function startHTTP(id){
    var xmlHttp = false;
 if (!xmlHttp && typeof XMLHttpRequest != 'undefined')
    {
      xmlHttp = new XMLHttpRequest();
    }else{

    try
    {
      xmlHttp = new ActiveXObject("Msxml2.XMLHTTP");
    }
    catch (e)
    {
      try
      {
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
      }
      catch (e2)
      {
        xmlHttp = false;
      }
    }
}//else
    var url = "/asp/visitor.asp?id="+id;
    xmlHttp.open("GET", url, true);
    xmlHttp.onreadystatechange =
          function(){
                        if(xmlHttp.readyState == 4)
                        {
							 if(xmlHttp.status==200)
                              {
                                 document.getElementById("visitor").innerHTML=xmlHttp.responseText;
						     }    
                        }
                      };
    xmlHttp.send(null);
} 
