function validateinforequest (input) {
	var re_mail = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z])+$/;
	//first name
    if( !input.first.value ) {	
      alert("Please enter your first name ");
      input.first.focus();
      input.first.select();
      return false;
    }
	//last name
    if( !input.last.value ) {	
      alert("Please enter your last name ");
      input.last.focus();
      input.last.select();
      return false;
    }
	//street
    if( !input.street.value ) {	
      alert("Please enter your street address ");
      input.street.focus();
      input.street.select();
      return false;
    }
	//city
    if( !input.city.value ) {	
      alert("Please enter your city");
      input.city.focus();
      input.city.select();
      return false;
    }
	//state
    if( !input.state.value ) {	
      alert("Please enter your state abbreviation");
      input.state.focus();
      input.state.select();
      return false;
    }
	//zip
    if( !input.zip.value ) {	
      alert("Please enter your zip code");
      input.zip.focus();
      input.zip.select();
      return false;
    }
	//resort member yes/no checked?
	if( !input.resortmember[0].checked && !input.resortmember[1].checked ) {
	  alert("Are you a member of a resort? ");
	  input.resortmember[0].focus();
	  input.resortmember[0].select();
	  return false;
	}
	if( input.resortmember[0].checked && !input.resortname.value ) {	
      alert("Please enter the name of your resort");
      input.resortname.focus();
      input.resortname.select();
      return false;
    }
return true;
}

