reMail = /^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,4})+$/

function Checkform(thisform) {

strError = 'Der opstod følgende fejl:\n\n';
intError = 0;

if (thisform.Dato1.value == "Ankomst")
{
strError = strError + 'Angiv venligst ankomstdato ...\n'
intError = 1;
}

if (thisform.Dato2.value == "Afrejse")
{
strError = strError + 'Angiv venligst afrejsedato ...\n'
intError = 1;
}

if (intError == 1) {
alert(strError)
return false;
}

}
