function CheckForm() {

if (document.contactForm.firstName.value=='') {
      alert('Please provide your First Name');
      document.contactForm.firstName.focus();
      return false;
}

if (document.contactForm.email.value=='') {
      alert('Please provide your Email Address');
      document.contactForm.email.focus();
      return false;
}

return true;
}