 
 var xmlHttp = null;

 var url="http://www.csnnet.cn/";

 //µÇÂ¼ÍøÉÏÉÌÆÌ
  function outShop(){
	  
	var urls =url+"fgq88/members/login.asp?login=out ";
	var sends="";
	if (window.ActiveXObject) {
	   xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}else if (window.XMLHttpRequest) {
	   xmlHttp = new XMLHttpRequest();
	}
	
	xmlHttp.open("post",urls,true);
	xmlHttp.onreadystatechange = handleStateChange;
	xmlHttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
	xmlHttp.send(sends); 
	
  }

  //µÇÂ¼blog
  function outBlog(){
    
	var urls =url+"blog/User_Logout.asp";
	var sends="";
	if (window.ActiveXObject) {
	   xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}else if (window.XMLHttpRequest) {
	   xmlHttp = new XMLHttpRequest();
	}
	xmlHttp.open("post",urls,true);
	xmlHttp.onreadystatechange = handleStateChange;
	xmlHttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
	xmlHttp.send(sends); 
	
  }
  //µÇÂ¼ÂÛÌ³
  function outBbs(){
	if (window.ActiveXObject) {
	   xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	}else if (window.XMLHttpRequest) {
	   xmlHttp = new XMLHttpRequest();
	}
	var urls =url+"bbs/login.asp?menu=out";
	xmlHttp.open("get",urls,true);
	xmlHttp.onreadystatechange = handleStateChange;
	xmlHttp.setRequestHeader("Content-type","application/x-www-form-urlencoded");
	xmlHttp.send(""); 
	
  }
  function handleStateChange(){
	
  }