function overPic(image_id,file_name) {
	if (document.images){
		window.document.getElementById(image_id).src="menu/" + file_name + ".gif";
	}
}
function overPicEn(image_id,file_name) {
	if (document.images){
		window.document.getElementById(image_id).src="menu_en/" + file_name + ".gif";
	}
}
function submitFormular() {
		
	with (document.anfordern) {
		if (document.getElementById('anrede').value == '') {
			window.alert('Bitte geben Sie Ihre Anrede an!');
			document.getElementById('anrede').focus();
			return false;
		}	
		if (document.getElementById('name').value == '') {
			window.alert('Bitte geben Sie Ihren Namen an!');
			document.getElementById('name').focus();
			return false;
		}
		if (document.getElementById('str_nr').value == '') {
			window.alert('Bitte geben Sie Ihre Straße und Hausnummer an!');
			document.getElementById('str_nr').focus();
			return false;
		}
		if (document.getElementById('plz_ort').value == '') {
			window.alert('Bitte geben Sie Ihre Postleitzahl und Ort an!');
			document.getElementById('plz_ort').focus();
			return false;
		}
		if (document.getElementById('land').value == '') {
			window.alert('Bitte geben Sie Ihr Land an!');
			document.getElementById('land').focus();
			return false;
		}
	}
	document.anfordern.submit();
	return true;
}
function submitFormular_en() {
		
	with (document.anfordern) {
		if (document.getElementById('anrede').value == '') {
			window.alert('Please specify your salutation!');
			document.getElementById('anrede').focus();
			return false;
		}
		if (document.getElementById('name').value == '') {
			window.alert('Please specify your name!');
			document.getElementById('name').focus();
			return false;
		}
		if (document.getElementById('str_nr').value == '') {
			window.alert('Please specify your street address!');
			document.getElementById('str_nr').focus();
			return false;
		}
		if (document.getElementById('plz_ort').value == '') {
			window.alert('Please specify your postal code and city!');
			document.getElementById('plz_ort').focus();
			return false;
		}
		if (document.getElementById('land').value == '') {
			window.alert('Please specify your country!');
			document.getElementById('land').focus();
			return false;
		}
	}
	document.anfordern.submit();
	return true;
}
function resetFormular() {
	document.anfordern.anrede.value = "";
	document.anfordern.name.value = "";
	document.anfordern.str_nr.value = "";
	document.anfordern.plz_ort.value = "";
	document.anfordern.land.value = "";
	
}