function validateForm() {
with (document.order) {
var alertMsg = "You Must Select a\n";
radioOption = -1;
for (counter=0; counter<ADDITIONALINFO2.length; counter++) {
if (ADDITIONALINFO2[counter].checked) radioOption = counter;
}
if (radioOption == -1) alertMsg += "\nMaster Cylinder";
radioOption = -1;
for (counter=0; counter<ADDITIONALINFO6.length; counter++) {
if (ADDITIONALINFO6[counter].checked) radioOption = counter;
}
if (radioOption == -1) alertMsg += "\nLever Type";
if (alertMsg != "You Must Select a\n") {
alert(alertMsg);
return false;
} else {
return true;
} } }
