function IsValidForm(theform) { if(!firstName(theform))return; if(!authorization(theform))return; if(!preferredComm(theform))return; if(!valEmail(theform))return; if(!driverFirstName(theform))return; if(!driverLastName(theform))return; if(!birthDate(theform))return; if(!maritalStatus(theform))return; if(!relationship(theform))return; if(!licenceNumber(theform))return; if(!licenceNbYears(theform))return; if(!cancelDeclined(theform))return; if(!trainingCourse(theform))return; if(!conviction(theform))return; if(!driverType(theform))return; if(!ValDateDay(theform))return; if(!ValDateMonth(theform))return; if(!ValDateYear(theform))return; if(!valPolicyEn(theform))return; theform.submit(); }