<!-- Begin
function noEntry() {
mt=document.mailform.adresse.value;
if ((mt.length<1)||(mt.substring(0,6)=="******")) {
alert("Vergessen Sie bitte "
+"nicht Ihre E-Mailadresse anzugeben");
document.mailform.adresse.value="******E-Mailadresse";
document.mailform.adresse.focus();
return false;
}
else { return true; 
location.href = "danke.htm"; }
}

function noEntry2() {
mt=document.mailform.name.value;
if ((mt.length<1)||(mt.substring(0,6)=="******")) {
alert("Vergessen Sie bitte "
+"nicht Ihren Namen anzugeben");
document.mailform.name.value="******Name";
document.mailform.name.focus();
return false;
}
else { return true; }
}

function noEntry3() {
mt=document.buchform.name.value;
if ((mt.length<1)||(mt.substring(0,6)=="******")) {
alert("Vergessen Sie bitte "
+"nicht Ihren Namen anzugeben");
document.buchform.name.value="******Name";
document.buchform.name.focus();
return false;
}
else { return true; 
location.href = "danke.htm"; }
}


function noEntry1() {
mt=document.buchform.adresse.value;
if ((mt.length<1)||(mt.substring(0,6)=="******")) {
alert("Vergessen Sie bitte "
+"nicht Ihre E-Mailadresse anzugeben");
document.buchform.adresse.value="******E-Mailadresse";
document.buchform.adresse.focus();
return false;
}
else { return true; }
}


// End -->