//
// COMMON JAVASCRIPT FILE
// This file is included on every page. Functions that must be accessible from every page
// or a large percentage of pages can go here.
//

// Displays the login window. This is referenced by one of the main navigatio items
function openLogin(theURL){
	var w = 480, h = 340;
	if (document.all || document.layers) {
		w = screen.availWidth;
		h = screen.availHeight;
	}
	var popW = 640, popH = 480;
	var leftPos = (w-popW)/2, topPos = (h-popH)/2;

	nw = window.open(theURL,'nspPortalPopup','toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=yes,width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos);
	nw.focus();
	return false;
}
