<!--
function checkform ( 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.realname.value == "") {
    alert( "Please enter your name." );
    form.realname.focus();
    return false ;
  }
   if (form.email.value == "") {
    alert( "Please enter your email address." );
    form.email.focus();
    return false ;
  }
   if (form.heard_about.selectedIndex == "0") {
    alert( "Please let us know how you heard about Kirsten Kemp." );
    form.heard_about.focus();
    return false ;
  }
   if (form.contact_type.selectedIndex == "0") {
    alert( "Please let us know the nature of your contact today." );
    form.contact_type.focus();
    return false ;
  }
   if (form.comments.value == "") {
    alert( "Please enter a comment or question for Kirsten." );
    form.comments.focus();
    return false ;
  }
  // ** END **
  return true ;
}


//-->