c=screen;// JavaScript Document
// Centered window pop-up. developed by Patrick Lee.
// centered window popup function
function popupCenteredWindow(URL,width,height){var windowWidth=width;var windowHeight=height;/* I need to use the resolution of the user to figure out where
     * to offset the new window. screen.width returns, width screen.height the height.
     */ topOffset=((c.height)-windowHeight)/2;topOffset-=40;leftOffset=((c.width)-windowWidth)/2;//This next line opens the new window with the parameters we want
 myWindow=open(URL,"content","status=no,location=yes,toolbar=no,directories=no,resizable=yes, scrollbars=no, width="+windowWidth+",height="+windowHeight+",top="+topOffset+",left="+leftOffset+"")}