function adressechecken(){
	with(document.form1)	
	{
	    if(!name.value || !vorname.value || !strasse.value || !plz.value || !ort.value || !land.value || !telefon.value || !emails.value){
            alert("Tous les champs avec un \* doivent \être remplis.");
            return false;
        }
        
	/* #### Newsletter #### */
	/*
	if(newsletter.checked && emails.value == ""){
		alert("Veuillez compléter le champ d'E-mail!");
		emails.focus();
		return false;		
	}
	*/	
	
	/*
		var Element = bestaetigungPer.selectedIndex;
		
			if(bestaetigungPer.options[Element].value == "E-Mail" && email.value == ""){
			alert("Vous avez oublier l'email.");
			email.focus();
			return false;		
		}
		
		if(bestaetigungPer.options[Element].value == "Fax" && fax.value == ""){
			alert("Vous avez oublier le fax.");
			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;
}

