// JavaScript Document

// Hide / Show Account

function play_game(gameId,inPopup,gameType, width, height) {
      var u = "demo";
      var p = "demo";

    if (gameType=="realplay") { u = ""; p = ""; }

    OpenCasinoGameWindow("https://canbet.microgaming.com/canbet/t3start.asp?gameID="+gameId+"&sEXT1="+u+"&sEXT2="+p+"",width,height);

    return false;
}

function OpenCasinoGameWindow(url,width,height)
{
	newWindow = window.open(url,width,height,'scrollbars=no,resizable');
	newWindow.focus()
}
