reMail = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/

function Checkform(thisform) {

strError = 'Der opstod følgende fejl:\n\n';
intError = 0;

if (!reMail.test(thisform.Email.value))
{
strError = strError + 'Oplys venligst gyldig E-mail adresse ...\n'
intError = 1;
thisform.Email.focus();
}

if (intError == 1) {
alert(strError)
return false;
}

}
