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_email.value == "" )
  {
    alert("Please enter your Email Address.");
    theForm.form_email.focus();
    return (false);
  }  
  
  return (true);

}



