var xmlHttp;
function createXmlHttp(){
	if (window.XMLHttpRequest)
			xmlHttp = new XMLHttpRequest();
		else
			xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
}
function anasyleRst(code){
	visit_num.innerHTML="";
	var target="/xxfb/staticAnasyle.do?code="+code+"&timesample="+new Date().getTime();
	createXmlHttp();
	xmlHttp.onreadystatechange = xmlOnreadChange;
	xmlHttp.open("GET", target, true);
	xmlHttp.send(null);
}
function xmlOnreadChange(){
	if (xmlHttp.readyState == 4){
		showInfo(xmlHttp.responseText);
	}
}
function showInfo(text){
	visit_num.innerHTML = text.substr(1);
}