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(); }
}
/*
//disable right click
var message="Right Clicking disabled.\nIf you'd like to make use of this image please contact\nMauricio Tavares at mauricio@raniresorts.com";
function clickIE4(){
	if (event.button==2){
		return;
		alert(message);
		return false;
	}
}

function clickNS4(e){
	if (document.layers||document.getElementById&&!document.all){
		if (e.which==2||e.which==3){
			alert(message);
			return false;
		}
	}
}

if (document.layers){
	document.captureEvents(Event.MOUSEDOWN);
	document.onmousedown=clickNS4;
}
	else if (document.all&&!document.getElementById){
	document.onmousedown=clickIE4;
}
document.oncontextmenu=new Function("alert(message);return false")
//end disable right click
*/