/**
 * @author micha
 */
function fuBerekenRoute(pichStraatnaam, pichHuisnummer, pichPlaats, pichNaarAdres){

 if (pichStraatnaam == "" ||
     pichHuisnummer == "" ||
     pichPlaats == "") {
     alert("Vul uw vertrek locatie volledig in.");
 }
 else {
	var chUrl = "http://maps.google.nl/maps?f=d&hl=nl&geocode=&saddr=" + pichStraatnaam + " " + pichHuisnummer + ", " + pichPlaats + "&daddr=" + pichNaarAdres;
	window.open(chUrl,"",""); 
 }


}
function _Init() {

}
