function GoogleMapsRoute(straat, plaats, land, end_addr) {
	start_addr = straat + ',' + plaats + ',' + land;
	window.open('http://maps.google.com/maps?daddr=' + end_addr + '&saddr=' + start_addr);
}