function validate() {
mNv=french_property_insurance.FullName.value;
if (mNv=='') {
alert('Your name is a required field. Please try again.');
event.returnValue=false;
}
mNv=french_property_insurance.ContTel.value;
if (mNv=='') {
alert('Your Contact Telephone number is a required field. Please try again.');
event.returnValue=false;
}
TIOK=false;
for (ic=0;ic<2;ic++) {
if (french_property_insurance.Time[ic].checked) TIOK=true;
}
if (!TIOK) {
alert('You Must select a time for the callback! Please try again.');
event.returnValue=false;
}
DAOK=false;
for (ic=0;ic<4;ic++) {
if (french_property_insurance.Day[ic].checked) DAOK=true;
}
if (!DAOK) {
alert('You Must select a day for the callback! Please try again.');
event.returnValue=false;
}
}