function valForm(theForm)
{		
	if (theForm.form_first_name.value == "" )
  {
    alert("Please enter your First Name.");
    theForm.form_first_name.focus();
    return (false);
  } 
  
  if (theForm.form_last_name.value == "" )
  {
    alert("Please enter your Last Name.");
    theForm.form_last_name.focus();
    return (false);
  } 

  if (theForm.form_email.value == "" )
  {
    alert("Please enter your Email Address.");
    theForm.form_email.focus();
    return (false);
  }  

	if (theForm.form_zipcode.value.length != 5 )
  {
    alert("Please enter a 5 digit Zip Code.");
    theForm.form_zipcode.focus();
    return (false);
  }
  
  return (true);

}
