<!-- 

   function applicationedits()
    {
     var retval = true;
     var errmsg = "";

     

     if (document.frmSendApplication.sFirstName.value == null ||
        document.frmSendApplication.sFirstName.value == "")
      {
       retval = false;
       errmsg += "Please provide your first name.\n";
      }
     if (document.frmSendApplication.sLastName.value == null ||
        document.frmSendApplication.sLastName.value == "")
      {
       retval = false;
       errmsg += "Please provide your last name.\n";
      }

      if (document.frmSendApplication.sAddress.value == null ||
        document.frmSendApplication.sAddress.value == "")
      {
       retval = false;
       errmsg += "Please provide Your address.\n";
      }

     if (document.frmSendApplication.sCity.value == null ||
        document.frmSendApplication.sCity.value == "")
      {
       retval = false;
       errmsg += "Please provide Your city.\n";
      }

      if (document.frmSendApplication.sZipCode.value == null ||
        document.frmSendApplication.sZipCode.value == "")
      {
       retval = false;
       errmsg += "Please provide Your Zip Code.\n";
      }

      if (document.frmSendApplication.sState.value == null ||
        document.frmSendApplication.sState.value == "")
      {
       retval = false;
       errmsg += "Please provide Your State.\n";
      }

     if (document.frmSendApplication.sPhoneNumber.value == null ||
        document.frmSendApplication.sPhoneNumber.value == "")
      {
       retval = false;
       errmsg += "Please provide your phone number.\n";
      }
     if (document.frmSendApplication.sMessage.value == null ||
        document.frmSendApplication.sMessage.value == "")
      {
       retval = false;
       errmsg += "Please type a message.\n";
      }


      if (retval != true)
      {
       alert (errmsg);
      }
     return retval;
    }




   function applicationedits2()
    {
     var retval = true;
     var errmsg = "";

     

     if (document.frmSendApplication.sFirstName.value == null ||
        document.frmSendApplication.sFirstName.value == "")
      {
       retval = false;
       errmsg += "Please provide your first name.\n";
      }
     if (document.frmSendApplication.sLastName.value == null ||
        document.frmSendApplication.sLastName.value == "")
      {
       retval = false;
       errmsg += "Please provide your last name.\n";
      }

      if (document.frmSendApplication.sAddress.value == null ||
        document.frmSendApplication.sAddress.value == "")
      {
       retval = false;
       errmsg += "Please provide Your address.\n";
      }

     if (document.frmSendApplication.sCity.value == null ||
        document.frmSendApplication.sCity.value == "")
      {
       retval = false;
       errmsg += "Please provide Your city.\n";
      }

      if (document.frmSendApplication.sZipCode.value == null ||
        document.frmSendApplication.sZipCode.value == "")
      {
       retval = false;
       errmsg += "Please provide Your Zip Code.\n";
      }

      if (document.frmSendApplication.sState.value == null ||
        document.frmSendApplication.sState.value == "")
      {
       retval = false;
       errmsg += "Please provide Your State.\n";
      }

     if (document.frmSendApplication.sPhoneNumber.value == null ||
        document.frmSendApplication.sPhoneNumber.value == "")
      {
       retval = false;
       errmsg += "Please provide your phone number.\n";
      }

      if (retval != true)
      {
       alert (errmsg);
      }
     return retval;
    }
     
 // -->
