var childWindow = null;
var onclickFunction = null;
var timeOut = null;

function NewGame(movieID, lang)
{
	if(timeOut == null)
	{
		childWindow = window.open("ad.php?movie="+movieID+"&lang="+lang, null, 'height=420,width=900,top='+ (window.screen.height/2 - 210) +',left='+ (window.screen.width/2 - 450) +'directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no');
	}
	else
	{
		if(childWindow != null)
		{
			childWindow.alert("Hey! Neked elvileg most egy szponzor reklámot kellene nézned!");
		}
		else
		{
			alert("Hey! Neked elvileg most egy szponzor reklámot kellene nézned!");
		}
		
	}
    
}
function DisablePlay()
{
	timeOut = setTimeout('EnablePlay()', 15000);
}
function EnablePlay()
{
    timeOut = null;
    
}
