	function g(id){return document.getElementById(id);}
	function u(id){
		o=g(id);
		o.style.color='green';
		o.style.fontSize='26px';
	}
	function d(id){
		o=g(id);
		o.style.color='#c00';
		o.style.fontSize='23px';
	}
	function getAjax(url,rsFun,o){
		ajax=window.XMLHttpRequest?new XMLHttpRequest():new ActiveXObject("Microsoft.XMLHTTP");
		ajax.onreadystatechange=function(){if(ajax.readyState == 4 && ajax.status == 200) eval(rsFun);}
		ajax.open('GET',url,true);
		ajax.send(null);
	}
	function comments(id){
		o=g('c'+id);
		if(o.innerHTML=='' || o.innerHTML=='<p>正在加载，请稍等...</p>'){
			o.innerHTML='<p>正在加载，请稍等...</p>';
			getAjax("http://"+location.host +'/plus/list_ajax.php?t=comment&cid='+id+"&d="+window.location.host,"o.innerHTML=ajax.responseText;",o);
		}
		o.style.display='block';
	}
	function ch(id){g('c'+id).style.display='none';}
	function itemclick(p,id) {getAjax('go_'+p+'_'+id+'/',"",0);}
	getAjax("http://"+location.host +'/plus/list_ajax.php?d='+window.location.host,"o.innerHTML=ajax.responseText;",g('wrap2'));
