function formchecker_subscribe(theForm)
{

  if (theForm.eNewsletterRecipientNameFirst.value == "")
  {
    alert("Please enter your name.");
    theForm.eNewsletterRecipientNameFirst.focus();
    return (false);
  }
  if (theForm.eNewsletterRecipientEmail.value == "")
  {
    alert("Please enter an email address.");
    theForm.eNewsletterRecipientEmail.focus();
    return (false);
	}
}