var xmlHttp;
site_location="http://server/landmark/";

function get_count(no_of_rooms)
{
var url="get_count.php?sid=" + Math.random() + "&no_of_rooms=" + no_of_rooms;
xmlHttp=GetXmlHttpObject(cntAdultChild);
xmlHttp.open("GET", url , true);
xmlHttp.send(null);
}

function cntAdultChild()
{ 
if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")
{
resp=xmlHttp.responseText;


//myarr1=resp.split("##")
//myarr1len=myarr1.length;
//alert(myarr1len);
//divstr="<select name='model' class='textbox'><option value=''>Select Model</option>";
  //  for (x=0;x<(myarr1len-1);x++)
  //  {
   //    str1=myarr1[x];
   //    myarr2=str1.split("#");
       //alert(myarr2[0]+"--"+myarr2[1]);
   //    divstr=divstr+"<option value='"+myarr2[0]+"'>"+myarr2[1]+"</option>";

   // }
   // divstr=divstr+"</select>";
  //  alert(divstr);
    document.getElementById("div_adult_child").innerHTML=resp;

}
}

function GetXmlHttpObject(handler)
{ 
var objXmlHttp=null;

if (navigator.userAgent.indexOf("Opera")>=0)
{
alert("This example doesn't work in Opera");
return 
}
if (navigator.userAgent.indexOf("MSIE")>=0)
{ 
var strName="Msxml2.XMLHTTP";
if (navigator.appVersion.indexOf("MSIE 5.5")>=0)
{
strName="Microsoft.XMLHTTP";
} 
try
{ 
objXmlHttp=new ActiveXObject(strName);
objXmlHttp.onreadystatechange=handler;
return objXmlHttp;
} 
catch(e)
{ 
alert("Error. Scripting for ActiveX might be disabled");
return 
} 
} 
if (navigator.userAgent.indexOf("Mozilla")>=0)
{
objXmlHttp=new XMLHttpRequest();
objXmlHttp.onload=handler;
objXmlHttp.onerror=handler;
return objXmlHttp;
}
}
