
function check()
{
var ausdruck = /^[\w-\.]+@[\w-\.]+\.[a-zA-Z]{2,4}$/;
var email = document.gast.strEmail.value;
var text = document.gast.strText.value;
var validate = document.gast.strValidate.value;

if (text=="" || email=="" || validate=="")
    {
    alert("Bitte die Felder 'Email', 'Ihr Eintrag' und 'Code' unbedingt ausfüllen!");
    return false;
    }

if (ausdruck.test(email)==false || email.length<7)
    {
    alert("Bitte gültige Email-Adresse eingeben!");
    return false;
    }
}

