﻿
function initxmlhttp(){

	    try{
	        xmlhttp=new XMLHttpRequest();
	    }catch(e){
	       try{
	         xmlhttp=new ActiveXObject("Msxml2.XMLHTTP");
	       }catch(e){
	         try{
	         xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	         }catch(e){
	            window.alert("You Browser Not Support AJAX");
	            return false;
	         }
	       }
	    }
	}

   function getsend(url,data){
      initxmlhttp();
     
      xmlhttp.open("POST",url,true);
      xmlhttp.onreadystatechange=data;
      xmlhttp.send(null);
      
     
   }
    function closewindow(){
      
         if(uid>0)
         {
           
            var url="handeronline.ashx?uid="+uid+"&t="+new Date().toString();
              getsend(url,function(){});
         }
     }


