     ///////////////////////////
    //                       //
   //    JackpotKing.com    //
  //    jk_affiliate.js    //
 //                       //
///////////////////////////

function JK_PopGame(WhatGame,AffiliateID) {
	var Url = "http://www.jackpotking.com/game/gameframe.html?WhatGame="+WhatGame+"&AffiliateID="+AffiliateID;
	var WindowWidth = 630;
	var WindowHeight = 430;
	var WindowTop = (screen.availHeight/2) - (WindowHeight/2);
	var WindowLeft = (screen.availWidth/2) - (WindowWidth/2);
	var WindowProps = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable,width='+WindowWidth+',height='+WindowHeight+',left='+WindowLeft+',top='+WindowTop+',screenx='+WindowLeft+',screeny='+WindowTop;
	GameWindow = window.open(Url,"GameWindow",WindowProps);
	if (GameWindow.opener == null) GameWindow.opener = self;
	return;
}

function PopGame(WhatGame) {
	var Url = "http://www.jackpotking.com/game/gameframe.html?WhatGame="+WhatGame;
	var WindowWidth = 630;
	var WindowHeight = 430;
	var WindowTop = (screen.availHeight/2) - (WindowHeight/2);
	var WindowLeft = (screen.availWidth/2) - (WindowWidth/2);
	var WindowProps = 'toolbar=0,location=0,status=0,menubar=0,scrollbars=0,resizable,width='+WindowWidth+',height='+WindowHeight+',left='+WindowLeft+',top='+WindowTop+',screenx='+WindowLeft+',screeny='+WindowTop;
	GameWindow = window.open(Url,"GameWindow",WindowProps);
	if (GameWindow.opener == null) GameWindow.opener = self;
	return;
}