// JavaScript Document

/**************************************************************
This code was written by Dejw - David Behal for Allit, s.r.o. 
It is a part of web page for byty pohoda. It is forbidden to 
use any part of this code without consulting with the author.
**************************************************************/

var xmlHttp;

function createXMLHttpRequest()
{
	try 
  { 
    return new XMLHttpRequest();     
  } 
  catch (e) 
  {
    try 
    { 
      return new ActiveXObject("Microsoft.XMLHTTP"); 
    } 
    catch (e) 
    {
      try 
      { 
        return new ActiveXObject("Msxml2.XMLHTTP");
      } 
      catch(e) 
      {
      	alert("Your browser does not support AJAX!");
	      return null;
      }
    }
  }
}
