<!-- Begin
function popUp(URL) {
if(screen.width > 1024){ var w = 1000; var h = 750; } 
else if(screen.width > 800){ var w = 800; var h = 600; } 
else{ var w = 640; var h = 480; }
midhor=""
midver=""
minhor=(screen.width-8)
minver=(screen.height-35)
Day = new Date()
id = Day.getTime()

if ((screen.height < h) || (screen.width < w))
{eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=" + minhor + ",height=" + minver + ",left = 0,top = 0');");
}
else
{midhor=((screen.width-w)/2);
midver=((screen.height-h)/5);
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=" + w + ",height=" + h + ",left = " + midhor + ",top = " + midver + "');");
}
}
// End -->