
<!-- js used to launch game popup window -->

function openPopup(url, width, height)
{
	var offset = 20;
	if (screen.width <= 820) {
		offset = 0;
	}
	win = window.open(url, "Game", "width="+width+",height="+height+",status=no,scrollbars=yes,screenX="+offset+",screenY="+offset+",top="+offset+",left="+offset+",resizable=no");
	win.opener = window;
}
function openPopupResizable(url, width, height)
{
	var offset = 20;
	if (screen.width <= 820) {
		offset = 0;
	}
	win = window.open(url, "Game", "width="+width+",height="+height+",status=no,scrollbars=yes,screenX="+offset+",screenY="+offset+",top="+offset+",left="+offset+",resizable=yes");
	win.opener = window;
}
