<script language="JavaScript">
<!-- Hide code from non-js browsers
   function validateContact()
   {
      if (document.actor_contact.name.value == "")
         {
         alert("Name: You have not filled in your name.");
         document.actor_contact.name.focus();
         return false;
         }
      else if ( (document.actor_contact.email.value == "") || (!document.actor_contact.email.value.match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi)) )
         {
         alert("E-Mail : You must enter a valid e-mail address.");
         document.actor_contact.email.focus();
         return false;
         }
      else if (document.actor_contact.message.value == "")
         {
         alert("message : Please enter your greeting text.");
         document.actor_contact.message.focus();
         return false;
         }
      else
	 {
	 alert("Thank you for your message!");
	 return true;
	 }
  }

  function validateSubscribe()
  {
      if ( (document.subscriber.email.value == "") || (!document.subscriber.email.value.match(/([a-zA-Z0-9._-]+@[a-zA-Z0-9._-]+\.[a-zA-Z0-9._-]+)/gi)) )
         {
         alert("E-Mail : You must enter a valid e-mail address.");
         document.subscriber.email.focus();
         return false;
         }
      else
	 {
	 alert("Thank you!");
	 return true;
	 }
  }

   // end hiding -->
</script>   