// JavaScript Document
// Referenced in CCPMD HTML Templates, various MyNAVSUP HTML Templates, and NAVSUP Public HTML Skin
// Used to open additional information
// in a new window that will center on the screen
// created by Josh Starner 1/24/2008
// edited by Brandon Rubinic 4/18/2008

function newWindow(url)
{

 var winl = (screen.width-600)/2;
 var wint = (screen.height-500)/2;
 theWindow=window.open(url,"navsup_popup","width=600,height=500,left="+winl+",top="+wint+",toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,copyhistory=yes,resizable=yes");
 theWindow.focus();
}
