<!-- Begin
function right(e) {
if (navigator.appName == 'Netscape' &&
(e.which == 3 || e.which == 2))
return false;
else if (navigator.appName == 'Microsoft Internet Explorer' &&
(event.button == 2 || event.button == 3)) {
alert("This sites's text and images are copyrighted (c) 2011.");
return false;
}
return true;
}

document.onmousedown=right;
document.onmouseup=right;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (document.layers) window.captureEvents(Event.MOUSEUP);
window.onmousedown=right;
window.onmouseup=right;
//  End -->

// http://www.randomsnippets.com/2008/02/12/how-to-hide-and-show-your-div/
function toggle() {
	var ele = document.getElementById("toggleMap");
	var text = document.getElementById("displayMap");
	var textInnerHtml = text.innerHTML;
	if(ele.style.display == "block") {
    		ele.style.display = "none";
		//text.innerHTML = "";
  	}
	else {
		ele.style.display = "block";
		//text.innerHTML = "hide";
	}
}
