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