function adressechecken(){
	with(document.form1)
	{
	    if( !name.value || !vorname.value || !strasse.value || !plz.value || !ort.value || !land.value || !telefon.value || !emails.value){
            alert("Please fill out all fields with an asteriks (*)");
            return false;
		}
	
	/* #### Newsletter #### */
	/*
	if(newsletter.checked && emails.value == ""){
		alert("Please fill out the e-mail field!");
		emails.focus();
		return false;		
	}
	*/
	
	/*
		var Element = bestaetigungPer.selectedIndex;
		
		if(bestaetigungPer.options[Element].value == "E-Mail" && email.value == ""){
			alert("Please enter an emailaddress for answering.");
			email.focus();
			return false;		
		}		
		
		if(bestaetigungPer.options[Element].value == "Fax" && fax.value == ""){
			alert("Please enter your fax for answering.");
			fax.focus();
			return false;		
		}
	*/
			
	return true;
	}
	
}

function buchungsform(){
	var validateAdress;
	validateAdress = adressechecken();

	if(validateAdress == false){
		return false;
	}
	return true;
}


function kontaktform(){
	var validateAdress;
	validateAdress = adressechecken();
	if(validateAdress == false){
		return false;
	}
	return true;
}

