var xmlhttp7,xmlhttp6,xmlhttp8,xmlhttp9,xmlhttp11;
function getxmlhttpobject()
{
var xmlhttp=null;
try
 {
 // Firefox, Opera 8.0+, Safari
 xmlhttp=new XMLHttpRequest();
 }
catch (e)
 {
 //Internet Explorer
 try
  {
  xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
  }
 catch (e)
  {
  xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
  }
 }
return xmlhttp;
}

function getLocation(location)
{
xmlhttp6=getxmlhttpobject()
var query="location="+location;

xmlhttp6.onreadystatechange=function(){
if (xmlhttp6.readyState==4)
 {
  document.getElementById('location_div').innerHTML=xmlhttp6.responseText;
        }
 }
 
xmlhttp6.open("GET","../pass.php?"+query,true)
xmlhttp6.send(null)
}

