document.write("ISTAT
");
s=new Array;
s[0]='当前在线1人';
s[1]='今日访问19次';
s[2]='总共访问15020次';
s[3]='每日平均18次';
var id, p=0;
function show(){
elem=document.getElementById('countshow');
if (elem) {
if (typeof(elem.text)!='undefined')
elem.text=s[p];
else if (typeof(elem.textContent)!='undefined')
elem.textContent=s[p];
else if (typeof(elem.innerText)!='undefined')
elem.innerText=s[p];
p=p+1;
if (p>3){p=0;}
id=setTimeout('show()', 3000);
}
}
show();