var nPlayers;
var nTables;

function writeStats(){
   var nLimit = 10;

	if(!nPlayers) {
		nPlayers = 0;
		nTables = 0;
	}
	
	if(nPlayers >= nLimit) {
		document.writeln('<td width="100%" class="stats"><b>Right now at IPN:</b><br><br>');
		document.write('<font color="#0096c9"><b>' + nPlayers + '</b></font> players at <font color="#0096c9"><b>' + nTables + '</b></font> tables</center>');
		document.writeln('</td>');
		
	}else{
		document.writeln('');
	}
}
