function start() {
  document.prescontneg.q1.focus();
}

function validate() {
 
  if (document.prescontneg.q1.value !="isn't driving") {
      alert("try again for 1");
      document.prescontneg.q1.focus();
      document.prescontneg.q1.select();
      return false;
}
  if (document.prescontneg.q2.value !="isn't stopping") {
      alert("try again for 2");
      document.prescontneg.q2.focus();
      document.prescontneg.q2.select();
      return false;
    }
 
  if (document.prescontneg.q3.value !="aren't speaking"){
      alert("try again for 3");
       document.prescontneg.q3.focus();
       document.prescontneg.q3.select();
       return false; 
}
  if (document.prescontneg.q4.value !="aren't listening"){
      alert("try again for 4");
      document.prescontneg.q4.focus();
      document.prescontneg.q4.select();
      return false;
  }
  if (document.prescontneg.q5.value !="'m not learning"){
      alert("try again for 5");
      document.prescontneg.q5.focus();
      document.prescontneg.q5.select();
      return false;
  }
  if (document.prescontneg.q6.value !="isn't getting"){
      alert("try again for 6");
      document.prescontneg.q6.focus();
      document.prescontneg.q6.select();
      return false;
  }
  if (document.prescontneg.q7.value !="aren't making"){
      alert("try again for 7");
      document.prescontneg.q7.focus();
      document.prescontneg.q7.select();
      return false;
  }
  if (document.prescontneg.q8.value !="aren't shutting"){
      alert("try again for 8");
      document.prescontneg.q8.focus();
      document.prescontneg.q8.select();
      return false;
  }
  if (document.prescontneg.q9.value !="isn't closing"){
      alert("try again for 9");
      document.prescontneg.q9.focus();
      document.prescontneg.q9.select();
      return false;
  }
  if (document.prescontneg.q10.value !="aren't opening"){
      alert("try again for 10");
      document.prescontneg.q10.focus();
      document.prescontneg.q10.select();
      return false;
  }
     
   alert("Good work. All your answers are correct.");
   return true;
}

function answers() {
    NewWin=window.open('answers_prescontneg.html','NewWin',
   'toolbar=no,status=no,width=200,height=360');
}