/* ========================================================================
DESCR:  This script was created by Keynect, All rights reserved.
AUTHOR: Tony Wilson info@keynect.co.uk 
NOTES:  Form Validation
======================================================================== */

  function check(sform)
  { var altx='All fields must be filled!'
  if (sform.Name.value.length<1)
  { alert('Please enter your name.'); sform.Name.focus(); return (false); }
  if ((sform.Phone.value.length<1) && (sform.Email.value.length<1))
  { alert('Please enter a valid email address or phone No.'); sform.Phone.focus(); return (false); }
  if (sform.Comment.value.length<1)
  { alert('Please enter your Comments.'); sform.Comment.focus(); return (false); }
  return (true); }
  