<!-- Begin
function verify() {
var themessage = "You are required to complete the following fields: ";
if (document.tform.candidates_name.value=="") {
themessage = themessage + " - Candidates Name";
}
if (document.tform.phone_number.value=="") {
themessage = themessage + " - Phone Number";
}
if (document.tform.years_experience.value=="") {
themessage = themessage + " - Years of Experience";
}
if (document.tform.systems_knowledge.value=="") {
themessage = themessage + " - Systems Knowledge";
}
if (document.tform.certificates.value=="") {
themessage = themessage + " - Certificates";
}
if (document.tform.work_type.value=="void") {
themessage = themessage + " - Employment Specifics";
}
if (document.tform.position_type.value=="void") {
themessage = themessage + " - Type of Employment";
}
if (document.tform.enjoy.value=="") {
themessage = themessage + " - What do you Enjoy";
}
if (document.tform.traveling.value=="void") {
themessage = themessage + " - Traveling";
}
if (document.tform.abilities.value=="") {
themessage = themessage + " - Abilities";
}
if (document.tform.salary.value=="") {
themessage = themessage + " - Salary";
}
if (document.tform.start.value=="") {
themessage = themessage + " - When can you Start";
}
//alert if fields are empty and cancel form submit
if (themessage == "You are required to complete the following fields: ") {
document.tform.submit();
}
else {
alert(themessage);
return false;
   }
}
//  End -->