sfHover = function() {
	var sfEls = document.getElementById("NAVIGATIE").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);


function NewWindow(u,n,w,h,f,p,x,y){
	// url, name, width, height, f?, position, x, y
	var win=self[n]=(ws=window.screen?1:0,M=Math,C='center',R='random',M='custom',sw=screen.availWidth,sh=screen.availHeight,T=(p==C&&ws)?(sh-h)/2:(p==R&&ws)?(M.floor(M.random()*(sh-h))):(p==M)?y:100,L=(p==C&&ws)?(sw-w)/2:(p==R&&ws)?(M.floor(M.random()*(sw-w))):(p==M)?x:100,s='width='+w+',height='+h+',top='+T+',left='+L,s+=(!f||f=='')?'':','+f,popup = window.open(u,n,s));if(win.focus){win.focus()};
}

