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"), "");
		}
	}
}

function imagePopUp(imgUrl,popUpName){
 window.open('imagePopUp.asp?img='+imgUrl+'&imageName='+popUpName,null,'scrollbars=no,width=100,height=100,left=100,top=100')
}

function showUitslag(id){
	var obj = document.getElementById(id);
	if(obj.style.display=='none')obj.style.display='block';
	else obj.style.display='none';
}
if (window.attachEvent) window.attachEvent("onload", navHover);
