 var xmlHttp
 function createXMLHttp()
 {
    if(window.ActiveXObject)
	{
        xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    else if(window.XMLHttpRequest)
	{
        xmlHttp = new XMLHttpRequest();
    }
 }
 
 function ChangeCount(uid,mid)
 {  
      
       createXMLHttp();
       xmlHttp.onreadystatechange =dodo; 
	   
       xmlHttp.open("get","http://www.gmbar.com/selltous/changecount.php?mid="+mid+"&uid="+uid,true); 
	   xmlHttp.send();   
 }

function dodo()
{
    if(xmlHttp.readystate==4)
	{ // xmlHttp??readystate?? 4??????
        if(xmlHttp.status==200)
		{ 
            eval(xmlHttp.responseText);
		    //document.getElementById("newscount").innerHTML=xmlHttp.responseText;
	       
		}
    }
}

