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

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');");
	}


