<!--


  function getRadioValue( radio )
  {
   for (var i = 0; i < radio.length; i++)
    {   
      if (radio[i].checked) { break }
    }
    if( i == radio.length )
      return -1;
    else
      return radio[i].value;
  }


  function CheckApplication( )
  {
    if( document.app.strFname.value == "" ) 
    {
      alert("You must enter your first name."); 
      return false;
    }
    if( document.app.strLname.value == "" ) 
    {
      alert("You must enter your last name."); 
      return false;
    }
    if( document.app.strPosition.value == "" ) 
    {
      alert("You must specify the position you're interested in."); 
      return false;
    }
    if( document.app.txtTrain.value == "" ) 
    {
      alert("You must specify your education/training."); 
      return false;
    }
    if( document.app.txtExp.value == "" ) 
    {
      alert("You must specify your experience."); 
      return false;
    }
    if( document.app.txtSkills.value == "" ) 
    {
      alert("You must specify your special skills."); 
      return false;
    }
    if( document.app.strPhone.value == "" ) 
    {
      alert("You must enter a phone number."); 
      return false;
    }
    
    if( document.app.intTime.value == "0" ) 
    {
      alert("You must specifiy the best time to reach you."); 
      return false;
    }
    if( document.app.strEmail.value == "" ) 
    {
      alert("You must enter a complete, valid e-mail address."); 
      return false;
    }

    if( document.app.strAvail.value == "" ) 
    {
      alert("You must specify your date available for work."); 
      return false;
    }
    return true;
  }
  
  
  function CheckRenoGuide( )
  {
    if( document.reno.strFname.value == "" ) 
    {
      alert("You must enter your first name."); 
      return false;
    }
    if( document.reno.strLname.value == "" ) 
    {
      alert("You must enter your last name."); 
      return false;
    }
    if( document.reno.strAddress1.value == "" ) 
    {
      alert("You must enter your address."); 
      return false;
    }
    if( document.reno.strCity.value == "" ) 
    {
      alert("You must enter your city."); 
      return false;
    }
    if( document.reno.strState.value == 0 ) 
    {
      alert("You must select your state."); 
      return false;
    }
    if( document.reno.strZip.value == "" ) 
    {
      alert("You must enter your ZIP code."); 
      return false;
    }
    if( document.reno.strHeard.value == "0" ) 
    {
      alert("Please tell us how you heard about Nauman Companies."); 
      return false;
    }
    if( document.reno.strStart.value == "0" ) 
    {
      alert("You must specify when the project will start."); 
      return false;
    }

    return true;
  
  }
  
  
  
  function CheckChurch( )
  {
    if( document.church.strChurch.value == "" ) 
    {
      alert("You must enter the church name."); 
      return false;
    }
    if( document.church.strPhone.value == "" ) 
    {
      alert("You must enter a phone number."); 
      return false;
    }    
    if( document.church.strAddress1.value == "" ) 
    {
      alert("You must enter your address."); 
      return false;
    }
    if( document.church.strCity.value == "" ) 
    {
      alert("You must enter your city."); 
      return false;
    }
    if( document.church.strState.value == "0" ) 
    {
      alert("You must select your state."); 
      return false;
    }
    if( document.church.strZip.value == "" ) 
    {
      alert("You must enter your ZIP code."); 
      return false;
    }
    if( document.church.strCounty.value == "" ) 
    {
      alert("You must enter your county."); 
      return false;
    } 
    if( document.church.strCallTime.value == "" ) 
    {
      alert("You must specify a time to call."); 
      return false;
    }        
    if( getRadioValue( document.church.bBuilding ) == -1 ) 
    {
      alert("You must specify if you have a building committee."); 
      return false;
    }        
        
    if( document.church.strInterest.value == "0" ) 
    {
      alert("You must specify what you're interested in."); 
      return false;
    }        
  
  
  
  
    return true;
  }
//-->  