// JavaScript Document

var xmlHttp

var aflag="";

function country_sel(cat,id,cond,divs)

{ 
 showdiv=divs;

xmlHttp=GetXmlHttpObject()

if (xmlHttp==null)

 {

 alert ("Browser does not support HTTP Request")

 return

 } 

 if(showdiv=='fest_add_div'){



 cond=(document.getElementById('yr').value)+"-"+(document.getElementById('mont').value)+"-"+(document.getElementById('dtt').value);

//alert(cond);

 id=document.getElementById("dateid").value;

}

var url="http://www.banjarahills.com/ajaxdata.php"

url=url+"?cat="+cat+"&sta="+cond

url=url+"&id="+id

url=url+"&cond="+cond

url=url+"&sid="+Math.random()





if(showdiv=='fest_add_div'){

 

 showdiv=showdiv+"_"+id;

 } 

xmlHttp.onreadystatechange=stateChanged

xmlHttp.open("GET",url,true)

xmlHttp.send(null)

}



function stateChanged() 

{ 

 if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete")

 { 

 //alert(xmlHttp.responseText)

 document.getElementById(showdiv).innerHTML=xmlHttp.responseText 

 

 }  

}



function GetXmlHttpObject()

{

var xmlHttp=null;

try {  xmlHttp=new XMLHttpRequest(); }catch (e) { try  {  xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");  } catch (e)  {  xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");  } }return xmlHttp;

}
