

function UpdateOnlineCounter(iCount){

	var spancounter = document.getElementById('onlinecounter');
	/*
	spancounter = document.all ?  document.all.onlinecountspan // IE4+
				: document.getElementById ? document.getElementById('onlinecountspan') // NN6
				: null; //
	*/
	if (spancounter){
		spancounter.innerHTML = '<a href="/locations.aspx?p=6">' + iCount + ' members online<\/a> ';
	}

}

function ShowEmpty(){
	var spancounter;
	spancounter = document.all ?  document.all.onlinecounter // IE4+
					: document.getElementById ? document.getElementById('onlinecounter') // NN6
					: null; //
	spancounter.innerHTML = '&nbsp;';
	}

function RetryCountCheck() {
	OnlineCountCheck();
	setTimeout("RetryCountCheck();",300000);
	}