/* Routenplaner */

function checkRouting() {
	f = document.getElementById("route_calculator");
	saddr = f.street.value + ",+" + f.city.value + ",+" + "Deutschland";
	f.saddr.value = saddr;
	return false;
}

function checkContactMessage(obj, text, height) {
	if(obj.value==text) {obj.value=''};
	obj.style.height = height + "px";
}
