// Common scripts used throughout site

function reallyCenterWindow(theURL,winName,winWidth,winHeight) {
var leftPos=0;
var topPos=0;
if (screen) {
leftPos = (screen.width / 2) - (winWidth/2);
topPos = (screen.height / 2) - (winHeight/2);
}
window.open(theURL,winName,'menubar=no,scrollbars=0,width='+winWidth+',height='+winHeight+',left='+leftPos+',top='+topPos);
} 