<!-- Begin

// this is to be included between the <head> and </head> of each html file

// this prevents the user from being able to right click on the page

// var message="You may not right mouse click this page.";
// if (navigator.appName == 'Microsoft Internet Explorer'){
// function NOclickIE(e) {
// if (event.button == 2 || event.button == 3) {
// alert(message);
// return false;
// }
// return true;
// }
// document.onmousedown=NOclickIE;
// document.onmouseup=NOclickIE;
// window.onmousedown=NOclickIE;
// window.onmouseup=NOclickIE;
// }
// else {
// function NOclickNN(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=NOclickNN; }
// document.oncontextmenu=new Function("alert(message);return false")
// }

// BEGIN WHAT WAS IN pop-up.js

// ONLY USE lowercase FOR ALL OPTIONS


IEMhover = function() {
	var IEMh = document.getElementById("menunav").getElementsByTagName("LI");
	for (var i=0; i<IEMh.length; i++) {
		IEMh[i].onmouseover=function() {
			this.className+=" IEMhover";
		}
		IEMh[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" IEMhover\\b"), "");
		}
	}
}

if (window.attachEvent) window.attachEvent("onload", IEMhover);

// END WHAT WAS IN pop-up.js


//  End -->

