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=450,height=480,left=300,top=300');");
}
//-----------------------------Pop Extra------------------------------
var newwindow;
function PopExtra(url)
{
	newwindow=window.open(url,'name','height=450,width=480');
	if (window.focus) {newwindow.focus()}
}
//-----------------------------Pop Up MAX----------------------------------
var newwindow;
function PopMAX(url)
{
	newwindow=window.open(url,'name','height=200,width=320');
	if (window.focus) {newwindow.focus()}
}

