function mailForm()
{
	   new Ajax.Request("ajax/contactformulier.php",
	   	  {
	   	  		
	   	  	   method: 'get',
	           parameters: $('contactForm').serialize(true),
	           onComplete : function(t)
	           {
					$('tekst').hide();
					$('bedankt').show();
	           }
	       }
	   );	
}
function planRoute()
{
string = 'http://maps.google.nl/maps?dir=to&saddr='
string += $('adres').value+'+'+$('pc').value+'+'+$('plaats').value;
string += '&daddr=';
string += 'Stavorenweg 6+2803 PT+Gouda';
string += '&hl=nl';
window.open(string);
}
