<!--
var xmlHttp;
 if(window.ActiveXObject) xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
else if(window.XMLHttpRequest) xmlHttp=new XMLHttpRequest();
xmlHttp.open("GET","http://www.kidsbook.cn/2009/images/totalinfo2009.php",true);
xmlHttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xmlHttp.onreadystatechange=function(){
	if(xmlHttp.readyState==4){
	    if(xmlHttp.status==200) document.getElementById("totalCategory").innerHTML=xmlHttp.responseText;
	}
}
xmlHttp.send(null);
//-->