function preloadImages() { //v3.0
 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
   var i,j=d.MM_p.length,a=preloadImages.arguments; for(i=0; i<a.length; i++)
   if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

/* contact */

	function valideren()
	{
	if (document.contactFrm.voornaam.value=="")
	{
	alert ("Gelieve uw voornaam in te vullen.")
	document.contactFrm.voornaam.style.backgroundColor='#FFE7EA';
	document.contactFrm.voornaam.focus()
	return false
	}

	if (document.contactFrm.naam.value=="")
	{
	alert ("Gelieve uw familienaam in te vullen.")
	document.contactFrm.naam.style.backgroundColor='#FFE7EA';
	document.contactFrm.naam.focus()
	return false
	}

	if (document.contactFrm.email.value=="")
	{
	alert ("Gelieve uw email adres in te vullen.")
	document.contactFrm.email.style.backgroundColor='#FFE7EA';
	document.contactFrm.email.focus()
	return false
	}
	}

/* popup */

function PopupPic(sPicURL) {
     window.open( "popup.htm?"+sPicURL, "",  
     "resizable=1,HEIGHT=200,WIDTH=200,left=50,top=50");
   } 

