function createpopup(URL)
{
	var day = new Date();
	id = day.getTime();
	
	var scrw = screen.width;	// Screen width
	var scrh = screen.height;	// Screen height
	
	var w = 500;				// Popup width
	var h = scrh / 1.5;			// Popup height
	
	var x = (scrw - w) / 2;		// Popup horizontal position
	var y = (scrh - h) / 2;		// Popup vertical position
	
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + w + ",height=" + h + ",left=" + x + ",top=" + y + "');");
}

function showpopup(id)
{
	var URL = "continc/popup.php?id=" + id;
	createpopup(URL);
}

function showrules(id)
{
	var URL = "continc/rules.php?id=" + id;
	createpopup(URL);
}

function showresults(id)
{
	var URL = "continc/results.php?id=" + id;
	createpopup(URL);
}

function shownotice(id)
{
	var URL = "continc/notice.php?id=" + id;
	createpopup(URL);
}

