function tomtom(){
	var straat;
	var plaats;
	var naar;
	var tomtom;
	
	straat 	= document.getElementById('tomtom-straat').value;
	plaats 	= document.getElementById('tomtom-plaats').value;
	naar 		= document.getElementById('tomtom-naar').value;
	
	tomtom = "http://routes.tomtom.com/t/#/route/"+escape(straat+", "+plaats)+"/"+escape(naar)+"/";
	
	document.getElementById('tomtom-link').href = tomtom;
}
