<!--
function VerifyData(submit) {
formOk = true;
errorMsg = "";

if (submit.name.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (submit.mail.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (submit.exp.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (submit.qual.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (submit.tech.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (submit.other.value == "") {
formOk = false;
errorMsg = "Please enter all the information";
}

if (!formOk) {
alert(errorMsg);
}

return formOk;
} 
//-->








