<!--
// Ombudsman For The Defence Forces - COMMON JS FUNCTIONS

// Create Popup Window
var popwin;
function openWin(url) {
	popwin = window.open(url,'PrintFriendly','left=100,top=100,screenX=30,screenY=30,width=600,height=600,menubar=no,scrollbars=yes,resizable=yes');

	if (window.focus) {popwin.focus()}
}

// Create Drop Down Menu
var navHover;
navHover = function() {
	var lis = document.getElementById("navmenu").getElementsByTagName("LI");
	for (var i=0; i<lis.length; i++) {
		lis[i].onmouseover=function() {
			this.className+=" iehover";
		}
		lis[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" iehover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", navHover);

//-->