
<!-- Begin
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=600,top=5,left=5');");
}

function popUp(URL, WIDTH, HEIGHT, VIEWER, SCROLLBARS) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + VIEWER + "', 'toolbar=0,scrollbars=" + SCROLLBARS + ",location=0,statusbar=0,menubar=0,resizable=0,width=" + WIDTH + ",height=" + HEIGHT + ",top=5,left=5'); page" + id + ".focus();");
}

function popUp(URL, WIDTH, HEIGHT) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width="+WIDTH+",height="+HEIGHT+",top=5,left=5');");
}

function PopUpPano(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=1,width=700,height=500,top=20,left=20');");
}

function popUpViewer(URL, WIDTH, HEIGHT, VIEWER) {
if ('' == VIEWER)
{
	VIEWER = 'pop';
}
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + VIEWER + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + WIDTH + ",height=" + HEIGHT + ",top=5,left=5'); page" + id + ".focus();");
}



// End -->

