function valForm(theForm)
{		
	if (theForm.form_first_name.value == "" )
  {
    alert("Please enter your 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);

}

