/*
	[Discuz!] (C)2001-2006 Comsenz Inc.
	This is NOT a freeware, use is subject to license terms

	$RCSfile: onlines.js,v $
	$Revision: 1.2.2.1 $
	$Date: 2007/02/07 16:12:18 $
*/

document.write('<span id="onlinenum"></span>');
getonlinenum();
function getonlinenum() {
	var x = new Ajax();
	x.get('misc.php?action=getonlines&inajax=yes', function(s){
		$('onlinenum').innerHTML = s;
	});
}
window.setInterval("getonlinenum()", 180000);
