// Launch External Browser Window
	// acts like target="_blank" of file - new
	// to activate replace the word location only in the
	// link tag below with the href of the link
	// <A HREF="JavaScript:exWin('location')">
	// to modify the function -- see below

function exWin (exURL) {
	window.open(exURL, "", "menubar=yes,toolbar=yes,location=yes,directories=no,status=yes,scrollbars=yes,resizable=yes,width=640,height=400");
}

// End External Browser Window

// menubar=yes    always (disabling, also disables print function)
// toolbar=yes    always (disable for pop-up non-navigating windows)
// directories=no    annoying netscape and explorer buttons
// status=yes    whether status bar at bottom of window is visible
// scrollbars=yes    can be changed to no
// resizable=yes    window can be resized by user or not
// width=x    x is the width in pixels of the window
// height=y    change y to the height in pixels of the window



// External Window Variations used

function helpWin (helpURL) {
	window.open(helpURL, "Help_Center", "menubar=yes,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,width=520,height=400");
}

function prWin (prURL) {
	window.open(prURL, "Press_Releases", "menubar=yes,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,width=520,height=400");
}

function contactWin(contactURL) {
	window.open(contactURL, "Contact_Us", "menubar=yes,toolbar=no,location=no,directories=no,status=no,scrollbars=yes,resizable=no,width=470,height=420");
}
