function contactCheck(form)

{
  // see http://www.thesitewizard.com/archive/validation.shtml
  // for an explanation of this script and how to use it on your
  // own website

  // ** START **
  if (form.company.value == "") {
    alert( "Please enter your COMPANY NAME." );
    form.company.focus();
    return false ;
  }
   if (form.name.value == "") {
    alert( "Please enter YOUR NAME." );
    form.name.focus();
    return false ;
  }
   if (form.emailaddy.value == "") {
    alert( "Please enter your EMAIL ADDRESS." );
    form.emailaddy.focus();
    return false ;
  }
  
  // ** END **
  return true ;
}
