// JavaScript Document
function popitup(url)
{
	newwindow=window.open(url,'name','height=800,width=640');
	if (window.focus) {newwindow.focus()}
	return false;
}


function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=360,height=310,left = 480,top = 392');");
}

function popUpTwo(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=600,height=550,left = 480,top = 392');");
}

function popUpThree(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=280,height=252,left = 480,top = 392');");
}