// Jump Menu

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

// Fuction will Capitalize First Letter of Form Fields

function capitalizeMe(obj) {
        val = obj.value;
        newVal = '';
        val = val.split(' ');
        for(var c=0; c < val.length; c++) {
                newVal += val[c].substring(0,1).toUpperCase() +
val[c].substring(1,val[c].length) + ' ';
        }
        obj.value = newVal;
}

// New Member Area Registration Validation

function checkform_membersignup ( form )
{
  if (form.member_number.value == "") {
    alert( "The MEMBER NUMBER field is required to complete and submit this form." );
    form.member_number.focus();
    return false ;
  }  
  if (isNaN(form.member_number.value) == true) {
    alert( "The MEMBER NUMBER field must only contain numbers." );
    form.member_number.focus();
    return false ;
  }
   if (form.member_FirstName.value == "") {
    alert( "The FIRST NAME field is required to complete and submit this form." );
    form.member_FirstName.focus();
    return false ;
  } 
   if (form.member_LastName.value == "") {
    alert( "The LAST NAME field is required to complete and submit this form." );
    form.member_LastName.focus();
    return false ;
  } 
    if (form.member_SSN.value == "") {
    alert( "The MEMBER SOCIAL SECURITY NUMBER field is required to complete and submit this form." );
    form.member_SSN.focus();
    return false ;
  }
    if (form.member_EmailAddress.value == "") {
    alert( "The EMAIL ADDRESS field is required to complete and submit this form." );
    form.member_EmailAddress.focus();
    return false ;
  }
    if (form.member_EmailAddressConfirm.value == "") {
    alert( "The CONFIRMATION EMAIL ADDRESS field is required to complete and submit this form." );
    form.member_EmailAddressConfirm.focus();
    return false ;
  }
   if (form.member_password.value == "") {
    alert( "The MEMBER PASSWORD field is required to complete and submit this form." );
    form.member_password.focus();
    return false ;
  }
   if (form.member_password.value.length > 12) {
    alert( "The MEMBER PASSWORD field needs to be a least 12 digits in length to complete and submit this form." );
    form.member_password.focus();
    return false ;
  }
   if (form.member_passwordConfirm.value == "") {
    alert( "The MEMBER CONFIRMATION PASSWORD field is required to complete and submit this form." );
    form.member_passwordConfirm.focus();
    return false ;
  } 
   if (form.member_password.value != form.member_passwordConfirm.value) {
    alert( "The PASSWORD fields must match to complete and submit this form." );
    form.member_passwordConfirm.focus();
    return false ;
  } 
  return true ;
}

// Application Form Validation

function checkform_app_becomeamember ( form )
{
  if (form.New_FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.New_FirstName.focus();
    return false ;
  }
   if (form.New_LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.New_LastName.focus();
    return false ;
  } 
   if (form.New_LastName.value == form.New_FirstName.value) {
    alert( "The first and last name fields are duplicated, please correct the issue." );
    form.New_LastName.focus();
    return false ;
  } 
    if (form.New_PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.New_PayGrade.focus();
    return false ;
  }
    if (form.New_Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.New_Gender.focus();
    return false ;
  }
    if (form.New_DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.New_DateOfBirthMo.focus();
    return false ;
  }
    if (form.New_DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.New_DateOfBirthDay.focus();
    return false ;
  }
  if (form.New_DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.New_DateOfBirthYr.focus();
    return false ;
  }  
  if (form.New_SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.New_SSN_1.focus();
    return false ;
  }
  if (form.New_SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.New_SSN_2.focus();
    return false ;
  }
  if (form.New_SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.New_SSN_3.focus();
    return false ;
  }
  if (form.New_CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.New_CurrentAddress1.focus();
    return false ;
  }
  if (form.New_City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.New_City.focus();
    return false ;
  }
  if (form.New_State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.New_State.focus();
    return false ;
  }
  if (form.New_Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.New_Zip.focus();
    return false ;
  }
  if (form.New_EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.New_EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.New_BranchofService.length-1; i > -1; i--) {
	if (form.New_BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.New_DutyStatus.length-1; i > -1; i--) {
	if (form.New_DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.New_FlyingStatus.length-1; i > -1; i--) {
	if (form.New_FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}
  if (form.New_BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.New_BaseUnit.focus();
    return false ;
  }
  if (form.New_Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.New_Duties.focus();
    return false ;
  }
  return true ;
}

function checkform_app_becomeamember2 ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}
  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }
  return true ;
}

function checkform_app_cancerguardplan ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  
  myOptionSmoker = -1;
	for (i=form.Smoker.length-1; i > -1; i--) {
	if (form.Smoker[i].checked) {
	myOptionSmoker = i; i = -1;
	}
	}
	if (myOptionSmoker == -1) {
	alert("The are you a smoker field is required to complete and submit this form.");
	return false;
	}
    
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
  
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}

  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }

  /*myOptionMemberDesiredCoverageAmount = -1;
	for (i=form.MemberDesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.MemberDesiredCoverageAmount[i].checked) {
	myOptionMemberDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionMemberDesiredCoverageAmount == -1) {
	alert("The member desired coverage field is required to complete and submit this form.");
	return false;
	}*/
  return true ;
}

function checkform_app_childprotectionplan ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
   if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  } 
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
  if (form.ChildsFirstName_C1.value == "") {
    alert( "The child's first name field is required to complete and submit this form." );
    form.ChildsFirstName_C1.focus();
    return false ;
  }
  if (form.ChildsLastName_C1.value == "") {
    alert( "The child's last name field is required to complete and submit this form." );
    form.ChildsLastName_C1.focus();
    return false ;
  }
  if (form.ChildsDateOfBirthMo_C1.value == "") {
    alert( "The child's date of birth field is required to complete and submit this form." );
    form.ChildsDateOfBirthMo_C1.focus();
    return false ;
  }
  if (form.ChildsDateOfBirthDay_C1.value == "") {
    alert( "The child's date of birth field is required to complete and submit this form." );
    form.ChildsDateOfBirthDay_C1.focus();
    return false ;
  }
  if (form.ChildsDateOfBirthYr_C1.value == "") {
    alert( "The child's date of birth field is required to complete and submit this form." );
    form.ChildsDateOfBirthYr_C1.focus();
    return false ;
  }
  if (form.ChildsSSN_1_C1.value == "") {
    alert( "The child's social security number field is required to complete and submit this form." );
    form.ChildsSSN_1_C1.focus();
    return false ;
  }
  if (form.ChildsSSN_2_C1.value == "") {
    alert( "The child's social security number field is required to complete and submit this form." );
    form.ChildsSSN_2_C1.focus();
    return false ;
  }
  if (form.ChildsSSN_3_C1.value == "") {
    alert( "The child's social security number field is required to complete and submit this form." );
    form.ChildsSSN_3_C1.focus();
    return false ;
  }
    myOptionCoverageAmount = -1;
	for (i=form.CoverageAmount_C1.length-1; i > -1; i--) {
	if (form.CoverageAmount_C1[i].checked) {
	myOptionCoverageAmount = i; i = -1;
	}
	}
	if (myOptionCoverageAmount == -1) {
	alert("The coverage amount field is required to complete and submit this form.");
	return false;
	}

  if (form.ChildsHeight_C1.value == "") {
    alert( "The child's height field is required to complete and submit this form." );
    form.ChildsHeight_C1.focus();
    return false ;
  }
  if (form.ChildsWeight_C1.value == "") {
    alert( "The child's weight field is required to complete and submit this form." );
    form.ChildsWeight_C1.focus();
    return false ;
  }
  
    myOptionChildProtectionQ2 = -1;
	for (i=form.ChildProtectionQ2_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ2_C1[i].checked) {
	myOptionChildProtectionQ2 = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ2 == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ3 = -1;
	for (i=form.ChildProtectionQ3_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ3_C1[i].checked) {
	myOptionChildProtectionQ3 = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ3 == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ4 = -1;
	for (i=form.ChildProtectionQ4_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ4_C1[i].checked) {
	myOptionChildProtectionQ4 = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ4 == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ5 = -1;
	for (i=form.ChildProtectionQ5_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ5_C1[i].checked) {
	myOptionChildProtectionQ5 = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ5 == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ6 = -1;
	for (i=form.ChildProtectionQ6_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ6_C1[i].checked) {
	myOptionChildProtectionQ6 = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ6 == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ7a = -1;
	for (i=form.ChildProtectionQ7a_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ7a_C1[i].checked) {
	myOptionChildProtectionQ7a = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ7a == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ7b = -1;
	for (i=form.ChildProtectionQ7b_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ7b_C1[i].checked) {
	myOptionChildProtectionQ7b = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ7b == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ7c = -1;
	for (i=form.ChildProtectionQ7c_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ7c_C1[i].checked) {
	myOptionChildProtectionQ7c = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ7c == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ7d = -1;
	for (i=form.ChildProtectionQ7d_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ7d_C1[i].checked) {
	myOptionChildProtectionQ7d = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ7d == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ7e = -1;
	for (i=form.ChildProtectionQ7e_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ7e_C1[i].checked) {
	myOptionChildProtectionQ7e = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ7e == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ7f = -1;
	for (i=form.ChildProtectionQ7f_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ7f_C1[i].checked) {
	myOptionChildProtectionQ7f = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ7f == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
  if (form.ChildProtectionQ8_C1.value == "") {
    alert( "You must fill out the required application questions to complete and submit this form." );
    form.ChildProtectionQ8.focus();
    return false ;
  }
  
    myOptionChildProtectionQ9 = -1;
	for (i=form.ChildProtectionQ9_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ9_C1[i].checked) {
	myOptionChildProtectionQ9 = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ9 == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ10 = -1;
	for (i=form.ChildProtectionQ10_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ10_C1[i].checked) {
	myOptionChildProtectionQ10 = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ10 == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
	
    myOptionChildProtectionQ11 = -1;
	for (i=form.ChildProtectionQ11_C1.length-1; i > -1; i--) {
	if (form.ChildProtectionQ11_C1[i].checked) {
	myOptionChildProtectionQ11 = i; i = -1;
	}
	}
	if (myOptionChildProtectionQ11 == -1) {
	alert("You must fill out the required application questions to complete and submit this form.");
	return false;
	}
  return true ;
}

function checkform_app_choiceleveltermplan ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}
  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }

  myOptionSmoker = -1;
	for (i=form.Smoker.length-1; i > -1; i--) {
	if (form.Smoker[i].checked) {
	myOptionSmoker = i; i = -1;
	}
	}
	if (myOptionSmoker == -1) {
	alert("The are you a smoker field is required to complete and submit this form.");
	return false;
	}

    /*if (form.SpousesGender.value == "") {
    alert( "The spouse gender field is required to complete and submit this form." );
    form.SpousesGender.focus();
    return false ;
  }
    if (form.SpousesDateOfBirthMo.value == "") {
    alert( "The spouse date of birth field is required to complete and submit this form." );
    form.SpousesDateOfBirthMo.focus();
    return false ;
  }
    if (form.SpousesDateOfBirthDay.value == "") {
    alert( "The spouse date of birth field is required to complete and submit this form." );
    form.SpousesDateOfBirthDay.focus();
    return false ;
  }
  if (form.SpousesDateOfBirthYr.value == "") {
    alert( "The spouse date of birth field is required to complete and submit this form." );
    form.SpousesDateOfBirthYr.focus();
    return false ;
  }  

  myOptionIsSpouseaSmoker = -1;
	for (i=form.IsSpouseaSmoker.length-1; i > -1; i--) {
	if (form.IsSpouseaSmoker[i].checked) {
	myOptionIsSpouseaSmoker = i; i = -1;
	}
	}
	if (myOptionIsSpouseaSmoker == -1) {
	alert("The is spouse a smoker field is required to complete and submit this form.");
	return false;
	}

  myOptionMemberDesiredTerm = -1;
	for (i=form.MemberDesiredTerm.length-1; i > -1; i--) {
	if (form.MemberDesiredTerm[i].checked) {
	myOptionMemberDesiredTerm = i; i = -1;
	}
	}
	if (myOptionMemberDesiredTerm == -1) {
	alert("The desired member term field is required to complete and submit this form.");
	return false;
	}

  myOptionMemberDesiredCoverageAmount = -1;
	for (i=form.MemberDesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.MemberDesiredCoverageAmount[i].checked) {
	myOptionMemberDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionMemberDesiredCoverageAmount == -1) {
	alert("The desired coverage field is required to complete and submit this form.");
	return false;
	}

  myOptionSpouseDesiredTerm = -1;
	for (i=form.SpouseDesiredTerm.length-1; i > -1; i--) {
	if (form.SpouseDesiredTerm[i].checked) {
	myOptionSpouseDesiredTerm = i; i = -1;
	}
	}
	if (myOptionSpouseDesiredTerm == -1) {
	alert("The spouse desired member term field is required to complete and submit this form.");
	return false;
	}

  myOptionSpouseDesiredCoverageAmount = -1;
	for (i=form.SpouseDesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.SpouseDesiredCoverageAmount[i].checked) {
	myOptionSpouseDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionSpouseDesiredCoverageAmount == -1) {
	alert("The spouse desired coverage field is required to complete and submit this form.");
	return false;
	}*/
  
  return true ;
}

function checkform_app_choiceleveltermplanplus ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}
  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }
    myOptionSmoker = -1;
	for (i=form.Smoker.length-1; i > -1; i--) {
	if (form.Smoker[i].checked) {
	myOptionSmoker = i; i = -1;
	}
	}
	if (myOptionSmoker == -1) {
	alert("The are you a smoker field is required to complete and submit this form.");
	return false;
	}

  /*myOptionDesiredCoverageAmount = -1;
	for (i=form.DesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.DesiredCoverageAmount[i].checked) {
	myOptionDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionDesiredCoverageAmount == -1) {
	alert("The desired coverage amount field is required to complete and submit this form.");
	return false;
	}

  myOptionPlanofYourChoice = -1;
	for (i=form.PlanofYourChoice.length-1; i > -1; i--) {
	if (form.PlanofYourChoice[i].checked) {
	myOptionPlanofYourChoice = i; i = -1;
	}
	}
	if (myOptionPlanofYourChoice == -1) {
	alert("The plan of choice field is required to complete and submit this form.");
	return false;
	}*/
  return true ;
}

function checkform_app_highvaluelevelterm ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}
  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }
    myOptionSmoker = -1;
	for (i=form.Smoker.length-1; i > -1; i--) {
	if (form.Smoker[i].checked) {
	myOptionSmoker = i; i = -1;
	}
	}
	if (myOptionSmoker == -1) {
	alert("The are you a smoker field is required to complete and submit this form.");
	return false;
	}
  myOptionDesiredCoverageAmount = -1;
	for (i=form.DesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.DesiredCoverageAmount[i].checked) {
	myOptionDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionDesiredCoverageAmount == -1) {
	alert("The desired coverage amount field is required to complete and submit this form.");
	return false;
	}
  myOptionPlanofYourChoice = -1;
	for (i=form.PlanofYourChoice.length-1; i > -1; i--) {
	if (form.PlanofYourChoice[i].checked) {
	myOptionPlanofYourChoice = i; i = -1;
	}
	}
	if (myOptionPlanofYourChoice == -1) {
	alert("The plan of choice field is required to complete and submit this form.");
	return false;
	}
  return true ;
}

function checkform_app_platinumadd ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}
  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }

  myOptionDesiredCoverageAmount = -1;
	for (i=form.DesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.DesiredCoverageAmount[i].checked) {
	myOptionDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionDesiredCoverageAmount == -1) {
	alert("The desired coverage amount field is required to complete and submit this form.");
	return false;
	}

  myOptionPlanofYourChoice = -1;
	for (i=form.PlanofYourChoice.length-1; i > -1; i--) {
	if (form.PlanofYourChoice[i].checked) {
	myOptionPlanofYourChoice = i; i = -1;
	}
	}
	if (myOptionPlanofYourChoice == -1) {
	alert("The plan of choice field is required to complete and submit this form.");
	return false;
	}
  
  return true ;
}

function checkform_app_securecarehospitalplan ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}

  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }

  myOptionDesiredCoverageAmount = -1;
	for (i=form.DesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.DesiredCoverageAmount[i].checked) {
	myOptionDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionDesiredCoverageAmount == -1) {
	alert("The desired coverage amount field is required to complete and submit this form.");
	return false;
	}

  myOptionPlanofYourChoice = -1;
	for (i=form.PlanofYourChoice.length-1; i > -1; i--) {
	if (form.PlanofYourChoice[i].checked) {
	myOptionPlanofYourChoice = i; i = -1;
	}
	}
	if (myOptionPlanofYourChoice == -1) {
	alert("The plan of choice field is required to complete and submit this form.");
	return false;
	}
  
  return true ;
}

function checkform_app_seniorsecurityplan ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  myOptionSmoker = -1;
	for (i=form.Smoker.length-1; i > -1; i--) {
	if (form.Smoker[i].checked) {
	myOptionSmoker = i; i = -1;
	}
	}
	if (myOptionSmoker == -1) {
	alert("The are you a smoker field is required to complete and submit this form.");
	return false;
	}

  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}

  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }

  myOptionDesiredCoverageAmount = -1;
	for (i=form.DesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.DesiredCoverageAmount[i].checked) {
	myOptionDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionDesiredCoverageAmount == -1) {
	alert("The desired coverage amount field is required to complete and submit this form.");
	return false;
	}

  myOptionPlanofYourChoice = -1;
	for (i=form.PlanofYourChoice.length-1; i > -1; i--) {
	if (form.PlanofYourChoice[i].checked) {
	myOptionPlanofYourChoice = i; i = -1;
	}
	}
	if (myOptionPlanofYourChoice == -1) {
	alert("The plan of choice field is required to complete and submit this form.");
	return false;
	}
  
  return true ;
}

function checkform_app_sglisupplement ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}

  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }
   if (form.SpousesFirstName.value == "") {
    alert( "The spouse first name field is required to complete and submit this form." );
    form.SpousesFirstName.focus();
    return false ;
  }
   if (form.SpousesLastName.value == "") {
    alert( "The spouse last name field is required to complete and submit this form." );
    form.SpousesLastName.focus();
    return false ;
  } 
    if (form.SpousesGender.value == "") {
    alert( "The spouse gender field is required to complete and submit this form." );
    form.SpousesGender.focus();
    return false ;
  }
    if (form.SpousesDateOfBirthMo.value == "") {
    alert( "The spouse date of birth field is required to complete and submit this form." );
    form.SpousesDateOfBirthMo.focus();
    return false ;
  }
    if (form.SpousesDateOfBirthDay.value == "") {
    alert( "The spouse date of birth field is required to complete and submit this form." );
    form.SpousesDateOfBirthDay.focus();
    return false ;
  }
  if (form.SpousesDateOfBirthYr.value == "") {
    alert( "The spouse date of birth field is required to complete and submit this form." );
    form.SpousesDateOfBirthYr.focus();
    return false ;
  }  
  if (form.SpousesSSN_1.value == "") {
    alert( "The spouse social security field is required to complete and submit this form." );
    form.SpousesSSN_1.focus();
    return false ;
  }
  if (form.SpousesSSN_2.value == "") {
    alert( "The spouse social security field is required to complete and submit this form." );
    form.SpousesSSN_2.focus();
    return false ;
  }
  if (form.SpousesSSN_3.value == "") {
    alert( "The spouse social security field is required to complete and submit this form." );
    form.SpousesSSN_3.focus();
    return false ;
  }
    myOptionIsSpouseACivilian = -1;
	for (i=form.IsSpouseACivilian.length-1; i > -1; i--) {
	if (form.IsSpouseACivilian[i].checked) {
	myOptionIsSpouseACivilian = i; i = -1;
	}
	}
	if (myOptionIsSpouseACivilian == -1) {
	alert("The spouse a civilian field is required to complete and submit this form.");
	return false;
	}
  if (form.SpousesOccupationDuties.value == "") {
    alert( "The spouse occupation field is required to complete and submit this form." );
    form.SpousesOccupationDuties.focus();
    return false ;
  }
  if (form.SpousesHeight.value == "") {
    alert( "The spouse height field is required to complete and submit this form." );
    form.SpousesHeight.focus();
    return false ;
  }
  if (form.SpousesWeight.value == "") {
    alert( "The spouse weight field is required to complete and submit this form." );
    form.SpousesWeight.focus();
    return false ;
  }  
    myOptionIsSpouseaSmoker = -1;
	for (i=form.IsSpouseaSmoker.length-1; i > -1; i--) {
	if (form.IsSpouseaSmoker[i].checked) {
	myOptionIsSpouseaSmoker = i; i = -1;
	}
	}
	if (myOptionIsSpouseaSmoker == -1) {
	alert("The spouse smoker field is required to complete and submit this form.");
	return false;
	}
  
    myOptionSpouseDesiredCoverageAmount = -1;
	for (i=form.SpouseDesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.SpouseDesiredCoverageAmount[i].checked) {
	myOptionSpouseDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionSpouseDesiredCoverageAmount == -1) {
	alert("The spouse desired coverage amount field is required to complete and submit this form.");
	return false;
	}

    myOptionSpouseASMBASGLISupQ1 = -1;
	for (i=form.SpouseASMBASGLISupQ1.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ1[i].checked) {
	myOptionSpouseASMBASGLISupQ1 = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ1 == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}

    myOptionSpouseASMBASGLISupQ2 = -1;
	for (i=form.SpouseASMBASGLISupQ2.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ2[i].checked) {
	myOptionSpouseASMBASGLISupQ2 = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ2 == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}

    myOptionSpouseASMBASGLISupQ3 = -1;
	for (i=form.SpouseASMBASGLISupQ3.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ3[i].checked) {
	myOptionSpouseASMBASGLISupQ3 = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ3 == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}

    myOptionSpouseASMBASGLISupQ4 = -1;
	for (i=form.SpouseASMBASGLISupQ4.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ4[i].checked) {
	myOptionSpouseASMBASGLISupQ4 = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ4 == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}
    myOptionSpouseASMBASGLISupQ5 = -1;
	for (i=form.SpouseASMBASGLISupQ5.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ5[i].checked) {
	myOptionSpouseASMBASGLISupQ5 = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ5 == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}
    myOptionSpouseASMBASGLISupQ6a = -1;
	for (i=form.SpouseASMBASGLISupQ6a.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ6a[i].checked) {
	myOptionSpouseASMBASGLISupQ6a = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ6a == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}
    myOptionSpouseASMBASGLISupQ6b = -1;
	for (i=form.SpouseASMBASGLISupQ6b.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ6b[i].checked) {
	myOptionSpouseASMBASGLISupQ6b = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ6b == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}
    myOptionSpouseASMBASGLISupQ6c = -1;
	for (i=form.SpouseASMBASGLISupQ6c.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ6c[i].checked) {
	myOptionSpouseASMBASGLISupQ6c = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ6c == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}
    myOptionSpouseASMBASGLISupQ6d = -1;
	for (i=form.SpouseASMBASGLISupQ6d.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ6d[i].checked) {
	myOptionSpouseASMBASGLISupQ6d = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ6d == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}
    myOptionSpouseASMBASGLISupQ7 = -1;
	for (i=form.SpouseASMBASGLISupQ7.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ7[i].checked) {
	myOptionSpouseASMBASGLISupQ7 = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ7 == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}
    myOptionSpouseASMBASGLISupQ8 = -1;
	for (i=form.SpouseASMBASGLISupQ8.length-1; i > -1; i--) {
	if (form.SpouseASMBASGLISupQ8[i].checked) {
	myOptionSpouseASMBASGLISupQ8 = i; i = -1;
	}
	}
	if (myOptionSpouseASMBASGLISupQ8 == -1) {
	alert("All application fields are required to complete and submit this form.");
	return false;
	}
  return true ;
}

function checkform_app_silveradd ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}

  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }

  myOptionDesiredCoverageAmount = -1;
	for (i=form.DesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.DesiredCoverageAmount[i].checked) {
	myOptionDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionDesiredCoverageAmount == -1) {
	alert("The desired coverage amount field is required to complete and submit this form.");
	return false;
	}

  myOptionPlanofYourChoice = -1;
	for (i=form.PlanofYourChoice.length-1; i > -1; i--) {
	if (form.PlanofYourChoice[i].checked) {
	myOptionPlanofYourChoice = i; i = -1;
	}
	}
	if (myOptionPlanofYourChoice == -1) {
	alert("The plan of choice field is required to complete and submit this form.");
	return false;
	}
  
  return true ;
}

function checkform_app_surnivorbenefitplan ( form )
{
  if (form.FirstName.value == "") {
    alert( "The first name field is required to complete and submit this form." );
    form.FirstName.focus();
    return false ;
  }
   if (form.LastName.value == "") {
    alert( "The last name field is required to complete and submit this form." );
    form.LastName.focus();
    return false ;
  } 
    if (form.PayGrade.value == "") {
    alert( "The pay grade field is required to complete and submit this form." );
    form.PayGrade.focus();
    return false ;
  }
    if (form.Gender.value == "") {
    alert( "The gender field is required to complete and submit this form." );
    form.Gender.focus();
    return false ;
  }
    if (form.DateOfBirthMo.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthMo.focus();
    return false ;
  }
    if (form.DateOfBirthDay.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthDay.focus();
    return false ;
  }
  if (form.DateOfBirthYr.value == "") {
    alert( "The date of birth field is required to complete and submit this form." );
    form.DateOfBirthYr.focus();
    return false ;
  }  
  if (form.SSN_1.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_1.focus();
    return false ;
  }
  if (form.SSN_2.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_2.focus();
    return false ;
  }
  if (form.SSN_3.value == "") {
    alert( "The social security field is required to complete and submit this form." );
    form.SSN_3.focus();
    return false ;
  }
  if (form.CurrentAddress1.value == "") {
    alert( "The current address field is required to complete and submit this form." );
    form.CurrentAddress1.focus();
    return false ;
  }
  if (form.City.value == "") {
    alert( "The current address city field is required to complete and submit this form." );
    form.City.focus();
    return false ;
  }
  if (form.State.value == "") {
    alert( "The current address state field is required to complete and submit this form." );
    form.State.focus();
    return false ;
  }
  if (form.Zip.value == "") {
    alert( "The current address zip field is required to complete and submit this form." );
    form.Zip.focus();
    return false ;
  }
  if (form.EmailAddress.value == "") {
    alert( "The email address field is required to complete and submit this form." );
    form.EmailAddress.focus();
    return false ;
  }
    myOptionBranchofService = -1;
	for (i=form.BranchofService.length-1; i > -1; i--) {
	if (form.BranchofService[i].checked) {
	myOptionBranchofService = i; i = -1;
	}
	}
	if (myOptionBranchofService == -1) {
	alert("The branch of service field is required to complete and submit this form.");
	return false;
	}
    myOptionDutyStatus = -1;
	for (i=form.DutyStatus.length-1; i > -1; i--) {
	if (form.DutyStatus[i].checked) {
	myOptionDutyStatus = i; i = -1;
	}
	}
	if (myOptionDutyStatus == -1) {
	alert("The duty status field is required to complete and submit this form.");
	return false;
	}
    myOptionFlyingStatus = -1;
	for (i=form.FlyingStatus.length-1; i > -1; i--) {
	if (form.FlyingStatus[i].checked) {
	myOptionFlyingStatus = i; i = -1;
	}
	}
	if (myOptionFlyingStatus == -1) {
	alert("The flying status field is required to complete and submit this form.");
	return false;
	}

  if (form.BaseUnit.value == "") {
    alert( "The base unit field is required to complete and submit this form." );
    form.BaseUnit.focus();
    return false ;
  }
  if (form.Duties.value == "") {
    alert( "The duties field is required to complete and submit this form." );
    form.Duties.focus();
    return false ;
  }

  myOptionSmoker = -1;
	for (i=form.Smoker.length-1; i > -1; i--) {
	if (form.Smoker[i].checked) {
	myOptionSmoker = i; i = -1;
	}
	}
	if (myOptionSmoker == -1) {
	alert("The are you a smoker field is required to complete and submit this form.");
	return false;
	}

   /* if (form.SpousesGender.value == "") {
    alert( "The spouse gender field is required to complete and submit this form." );
    form.SpousesGender.focus();
    return false ;
  }
    if (form.SpousesDateOfBirthMo.value == "") {
    alert( "The spouse date of birth field is required to complete and submit this form." );
    form.SpousesDateOfBirthMo.focus();
    return false ;
  }
    if (form.SpousesDateOfBirthDay.value == "") {
    alert( "The spouse date of birth field is required to complete and submit this form." );
    form.SpousesDateOfBirthDay.focus();
    return false ;
  }
  if (form.SpousesDateOfBirthYr.value == "") {
    alert( "The spouse date of birth field is required to complete and submit this form." );
    form.SpousesDateOfBirthYr.focus();
    return false ;
  }  

  myOptionIsSpouseaSmoker = -1;
	for (i=form.IsSpouseaSmoker.length-1; i > -1; i--) {
	if (form.IsSpouseaSmoker[i].checked) {
	myOptionIsSpouseaSmoker = i; i = -1;
	}
	}
	if (myOptionIsSpouseaSmoker == -1) {
	alert("The is spouse a smoker field is required to complete and submit this form.");
	return false;
	}

  myOptionMemberDesiredCoverageAmount = -1;
	for (i=form.MemberDesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.MemberDesiredCoverageAmount[i].checked) {
	myOptionMemberDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionMemberDesiredCoverageAmount == -1) {
	alert("The member desired coverage field is required to complete and submit this form.");
	return false;
	}

  myOptionSpouseDesiredCoverageAmount = -1;
	for (i=form.SpouseDesiredCoverageAmount.length-1; i > -1; i--) {
	if (form.SpouseDesiredCoverageAmount[i].checked) {
	myOptionSpouseDesiredCoverageAmount = i; i = -1;
	}
	}
	if (myOptionSpouseDesiredCoverageAmount == -1) {
	alert("The spouse desired coverage field is required to complete and submit this form.");
	return false;
	}*/
  return true ;
}

function checkform_payment ( form )
{
  if (form.CoverageAffectiveDate.value == "") {
    alert( "The coverage effective field is required to complete and submit this form." );
    form.CoverageAffectiveDate.focus();
    return false ;
  }
  return true ;
}

