function popUp(URL, width, height, scroll)
{
	var win_x = (screen.width - width) / 2;
	var win_y = (screen.height - height) / 2;
	date = new Date();
	id = date.getTime();
	eval("page"+ id +" = window.open(URL, '"+ id +"', 'toolbar=0, scrollbars="+ scroll +", location=0, statusbar=0, menubar=0, resizable=0, width="+ width +", height="+ height +", left="+ win_x +", top="+ win_y +"');");
}

function popUp_Screenshot(URL)
{
	popUp("index.php?page=popup_screenshot&image="+ URL, 950, 670, 0);
}


function popUp_Editor_Screenshot(URL)
{
	popUp("index.php?page=popup_screenshot_editor&image="+ URL, 950, 670, 0);
}

function popUp_Mods_Screenshot(URL)
{
	popUp("index.php?page=popup_screenshot_mods&image="+ URL, 950, 670, 0);
}

function popUp_Survivor_Screenshot(URL)
{
	popUp("/new/index.php?page=popup_screenshot_survivor&image="+ URL, 950, 670, 0);
}

function popUp_Xmas_Calendar()
{
	popUp("../xmascalendar/index.php", 750, 570, 0);
}

function popUp_PR_2007_06_12()
{
	popUp("../survivor/pr_2007_06_12.php", 750, 570, 1);
}

