//function for Terms & Conditions Popup
//window on ALL DevZone and other Sites' pages

// used in Norfilms for the production diaries

function popUp (URL)
	{
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=no, scrollbars=yes, location=no, statusbar=no, menubar=no, resizable=yes, width=400, height=350, left=100, top=50');");
	}

//second function creates a bigger page for other pop-ups

function bigpopUp (URL)
	{
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=no, scrollbars=yes, location=no, statusbar=no, menubar=no, resizable=yes, width=600, height=650, left=50, top=50');");
	}

// used in Norfilms for the 360Media, and other panoramic images, games, etc.

function popUpwide (URL)
	{
		day = new Date();
		id = day.getTime();
		eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=no, scrollbars=yes, location=no, statusbar=no, menubar=no, resizable=yes, width=600, height=350, left=100, top=50');");
	}



