<!--
function Validator(theForm)
{

if (theForm.Name.value == "")
{
alert("Bitte geben Sie Ihren Namen an!");
theForm.Name.focus();
return (false);
}


if (theForm.Email.value == "")
{
alert("Bitte geben Sie Ihre E-Mail-Adresse an!");
theForm.Email.focus();
return (false);
}

if (theForm.Email.value.indexOf('@')== -1)
{
alert("Das ist keine E-Mail-Adresse! Beispiel: name@provider.at");
theForm.Email.focus();
return (false);
}
if (theForm.Email.value.indexOf('.')== -1)
{
alert("Das ist keine e-Mail-Adresse! Beispiel: name@provider.at");
theForm.Email.focus();
return (false);
}

if (theForm.Betreff.value == "")
{
alert("Bitte geben Sie einen Betreff an!");
theForm.Betreff.focus();
return (false);
}

if (theForm.Nachricht.value == "")
{
alert("Bitte keine leeren Nachrichten abschicken!");
theForm.Nachricht.focus();
return (false);
}




return (true);
}
//-->