﻿var nPlayers;
var nTables;

function writeStats(){
	var nLimit = 10;

	if(!nPlayers) {
		nPlayers = 0;
		nTables = 0;
	}
	
	if(nPlayers >= nLimit) {
		document.writeln('Nyní u nás Poker hraje<br><b>');
		document.write(nPlayers + '</b> hráčů u <b>' + nTables + '</b> stolů ');
		document.writeln('');
		
	}else{
		document.writeln('&nbsp;');
	}
}
