 
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.checkbox1.value == "") {
    alert( "Please read our Privacy Statement." );
    form.checkbox1.focus();
    return false ;
  }
   if (form.checkbox2.value == "") {
    alert( "Please read our Key Facts." );
    form.checkbox2.focus();
    return false ;
  }


  // ** END **
  return true ;
}

