// JavaScript Document
// Pulls in the following BOSS MEDIA data:
// #Players #Tables

var nPlayers;
var nTables;

function writeStats()
{
  var nLimit = 20;

  if(!nPlayers) 
  {
	nPlayers = 0;
	nTables = 0;
  }

  if(nPlayers >= nLimit) 
  {
	var text = 'Right Now at Fortune Poker<br>[#PLAYERS#] players at [#TABLES#] tables ';

	text = text.replace('[#PLAYERS#]',nPlayers);
	text = text.replace('[#TABLES#]',nTables);
	
	document.writeln(text);
  }
  else
  {
	var text = '<br><br>';
	document.writeln(text);
  }
}

writeStats();
