// JavaScript Document
<!--
function MT_NoSpamMail(mail) { 
	var varNumber = mail;
	var varDummy;
	var varToNormal = "";
	document.MM_returnValue = false;
	for(i = 0; i < varNumber.length; i += 2) {
		varDummy = parseInt(varNumber.substr(i,[2])) + 23;
		varDummy = unescape('%' + varDummy.toString(16));
		varToNormal += varDummy;
	}
	location.href = "mailto:" + varToNormal;
	status = "mailto:" + varToNormal;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function openWindow( URL, winName, width, height, center) { 
	xposition=0; yposition=0; 
	if ((parseInt(navigator.appVersion) >= 4 ) && (center)){ 
			xposition = (screen.width - width) / 2; 
			yposition = (screen.height - height) / 2; 
			} 
	args = "width=" + width + "," 
	+ "height=" + height + "," 
	+ "location=0," 
	+ "menubar=1," 
	+ "resizable=1," 
	+ "scrollbars=1," 
	+ "status=0," 
	+ "titlebar=0," 
	+ "toolbar=0," 
	+ "hotkeys=0," 
	+ "screenx=" + xposition + ","  //NN Only 
	+ "screeny=" + yposition + ","  //NN Only 
	+ "left=" + xposition + ","     //IE Only 
	+ "top=" + yposition;           //IE Only 

	window.open( URL , winName , args ); 
}

function window_onload() {

	if (window.print != null) 
	{ window.print(); } 
	else 
	{ alert('Helaas, je browser is niet geschikt voor deze opdracht.  Om te printen selecteer Print vanuit het File menu.'); 
	}
}

function go(){ 
var url ="../index.htm" 
var target="_self" 
window.open(url,target) 
} 


function hidestatus(){
window.status=''
return true
}

if (document.layers)
document.captureEvents(Event.MOUSEOVER | Event.MOUSEOUT)

document.onmouseover=hidestatus
document.onmouseout=hidestatus
//-->
