function start() {
  document.op.q1.focus();
}

function validate() {
 
  if (document.op.q1.value !="his") {
      alert("try again for 1");
      document.op.q1.focus();
      document.op.q1.select();
      return false;
}
  if (document.op.q2.value !="her") {
      alert("try again for 2");
      document.op.q2.focus();
      document.op.q2.select();
      return false;
    }
 
  if (document.op.q3.value !="their"){
      alert("try again for 3");
       document.op.q3.focus();
       documentop.q3.select();
       return false; 
}
  if (document.op.q4.value !="its"){
      alert("try again for 4");
      document.op.q4.focus();
      document.op.q4.select();
      return false;
  }
  if (document.op.q5.value !="my"){
      alert("try again for 5");
      document.op.q5.focus();
      document.op.q5.select();
      return false;
  }
  if (document.op.q6.value !="your"){
      alert("try again for 6");
      document.op.q6.focus();
      document.op.q6.select();
      return false;
  }
  if (document.op.q7.value !="our"){
      alert("try again for 7");
      document.op.q7.focus();
      document.op.q7.select();
      return false;
  }
  if (document.op.q8.value !="their"){
      alert("try again for 8");
      document.op.q8.focus();
      document.op.q8.select();
      return false;
  }
  if (document.op.q9.value !="his"){
      alert("try again for 9");
      document.op.q9.focus();
      document.op.q9.select();
      return false;
  }
  if (document.op.q10.value !="her"){
      alert("try again for 10");
      document.op.q10.focus();
      document.op.q10.select();
      return false;
  }
     
   alert("Good work. All your answers are correct.");
   return true;
}

function answers() {
    NewWin=window.open('answers.html','NewWin',
   'toolbar=no,status=no,width=200,height=360');
}