
<!-- 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=no,screenX="+offset+",screenY="+offset+",top="+offset+",left="+offset+",resizable=no");
	win.opener = window;
}
