if (typeof gn == 'undefined') {
	gn = 1;
}

if (typeof AttemptID == 'undefined') {
	AttemptID = 0;
}

if (typeof hn == 'undefined') {
	hn = 0;
}

if (document.all) {
	document.write(''+
'			<div id="main" class="poker">'+
'				<object '+
'					classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" '+
'					type="application/x-shockwave-flash" '+
'					width="800" '+
'					height="600">'+
'					<param '+
'						name="FlashVars" '+
'						value="GameNumber='+gn+'&AttemptID='+AttemptID+'&HandNumber='+hn+'" />'+
'					<param '+
'						name="movie" '+
'						value="poker.swf" />'+
'					<param '+
'						name="allowScriptAccess" '+
'						value="sameDomain" />'+
'					<param '+
'						name="allowFullScreen" '+
'						value="false" />'+
'					<param '+
'						name="quality" '+
'						value="high" />'+
'					<param '+
'						name="bgcolor" '+
'						value="#17300a" />'+
'				<\/object>'+
'			<\/div>');
}
else if (document.getElementById && !document.all) {
	document.write(''+
'			<div id="main" class="poker">'+
'				<object '+
'					data="poker.swf" '+
'					type="application/x-shockwave-flash" '+
'					width="800" '+
'					height="600">'+
'					<param '+
'						name="FlashVars" '+
'						value="GameNumber='+gn+'&AttemptID='+AttemptID+'&HandNumber='+hn+'" />'+
'					<param '+
'						name="movie" '+
'						value="poker.swf" />'+
'					<param '+
'						name="allowScriptAccess" '+
'						value="sameDomain" />'+
'					<param '+
'						name="allowFullScreen" '+
'						value="false" />'+
'					<param '+
'						name="quality" '+
'						value="high" />'+
'					<param '+
'						name="bgcolor" '+
'						value="#17300a" />'+
'				<\/object>'+
'			<\/div>');
}
function startGameJS() {
	var x = document.getElementsByTagName('a');
	for (y = 0; y < x.length; y++) {
		x[y].setAttribute('target','_blank');
	}
}
function endGameJS() {
	var x = document.getElementsByTagName('a');
	for (y = 0; y < x.length; y++) {
		x[y].setAttribute('target','_top');
	}
}
