  function markeerAnchor(){
	var array_a=document.getElementsByTagName('a');
	var aantal_a=array_a.length;
	for(var t=0;t<aantal_a;t++){
	  if(array_a[t]==document.URL){
		if(t<4){
		  array_a[t].style.color="#FF0000";
		}
		else{
		array_a[t].style.color="#000000";
		array_a[t].style.fontWeight="bold";
        array_a[t].parentNode.parentNode.parentNode.style.display="block";
		}
	  }
	}
  } 
  function reload() { location.replace('<#relpath#>contact.html');} // om een formulier te resetten ...

