	// kleine functie te ondersteuning aan de aanklikbare rij in tabellen
	function goTo(link){
		this.location.href=(link);
	}
	
	//op-up openen
	function doPop(doc, str, naam, width, height) {
		var x  = (screen.width - width) / 2;
		var y  = (screen.height - height) / 2;
		newpop = window.open(doc, naam, "width="+width+",height="+height+", toolbar=0,location=0,directories=0,status=0,menubar=1,scrollbars=1,resizable=0,zoombox=0,left="+x+",top="+y);
		newpop.focus();
	}
	
	function putValue(waarde, id){
		document.getElementById(id).value = waarde;
	}
	
	// submit een formulier met formval 
	function doForm(myForm) {
		document[myForm].submit();
	}	
	
	// submit een formulier met formval 
	function doFormVal(myForm) {
		if(formVal(document[myForm])) {
			document[myForm].submit();
		}
	}

	// div tonen of verbergen
	function toggleDiv(d) {
		var displayStatus = document.getElementById(d).style.display;
		if(displayStatus == 'none'){ var NewStat = ""; }
		if(displayStatus == ''){ var NewStat = "none"; }
		document.getElementById(d).style.display = NewStat;
		// alert (displayStatus);
	}	
