function popUp(URL) {
day = new Date();
id = day.getTime();
posTop = (self.screen.availHeight-380)/2;
posLeft = (self.screen.availWidth-500)/2;
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=500,height=380,screenX='+posLeft+',left='+posLeft+',top='+posTop+',screenY='+posTop);");
}

function pdfWindow(URL) {
day = new Date();
id = day.getTime();
sizHeight = self.screen.availHeight-160;
sizWidth = self.screen.availWidth-80;
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width='+sizWidth+',height='+sizHeight+',left=40,top=40');");
}

function linkWindow(URL) {
day = new Date();
id = day.getTime();
sizHeight = self.screen.availHeight-160;
sizWidth = self.screen.availWidth-80;
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width='+sizWidth+',height='+sizHeight+',left=40,top=40,screenX=40,screenY=40');");
}

function docWindow(URL) {
day = new Date();
id = day.getTime();
sizHeight = self.screen.availHeight-160;
sizWidth = self.screen.availWidth-80;
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width='+sizWidth+',height='+sizHeight+',left=40,top=40,screenX=40,screenY=40');");
}

function updateWindow(URL) {
day = new Date();
id = day.getTime();
sizHeight = self.screen.availHeight-160;
sizWidth = self.screen.availWidth-80;
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=0,menubar=1,resizable=1,width='+sizWidth+',height='+sizHeight+',left=40,top=40,screenX=40,screenY=40');");
}
