function popMap(docsrc) {

var docwidth = 350, docheight = 420, docleft = ((screen.width/2) - 250), doctop = ((screen.height/2) - 200);
	if (window.win && window.win.open && !window.win.closed){
		win.focus();
	}
	else
	{
	win = window.open(docsrc, 'Enrichment', 'toolbars=no,scrollbars=no,location=no,statusbars=no,menubars=no,resizable=no,width=' + docwidth + ',height=' + docheight + ',left=' + docleft + ',top=' + doctop);
	}
}

function NewWindow(thepage, thename, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(thepage, thename, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

function MapPalette(){
				ed = window.open('/nobel_square/map.php','SendPassword','width=780, height=780, top='+((screen.availHeight-285)/2) +', left='+((screen.availWidth-450)/2)+', scrollbars=yes');
			}