var childWindow = null;
var onclickFunction = null;
var timeOut = null;

function NewGame(movieID)
{
    childWindow = window.open("sponsorsAd/ad.php?movie="+movieID, null, 'height=400,width=700,top='+ (window.screen.height/2 - 200) +',left='+ (window.screen.width/2 - 350) +'directories=no,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,titlebar=no,toolbar=no');
}
function DisablePlay()
{
    if(timeOut == null)
    {
        onclickFunction = document.getElementById("reszleteswatch").onclick;
    }
    document.getElementById("reszleteswatch").onclick = function()
	{
	    if(childWindow == null)
		{
			alert("Hey! You're supposed to be looking at a sponsor's page right now!");
		}
        else 
		{
		    
			childWindow.alert("Hey! You're supposed to be looking at a sponsor's page right now!");
		}
	}
}
function EnablePlay()
{
    if(onclickFunction != null)
    {
        timeOut = setTimeout('resetOnclick()', 15000);
    }
    
}
function resetOnclick()
{
    document.getElementById("reszleteswatch").onclick =  onclickFunction;
    timeOut = null;
}