function start() {
  document.thisetc.q1.focus();
}

function validate() {
 
  if (document.thisetc.q1.value !="These oranges are very nice.") {
      alert("try again for 1");
      document.thisetc.q1.focus();
      document.thisetc.q1.select();
      return false;
}
  if (document.thisetc.q2.value !="Those students write well.") {
      alert("try again for 2");
      document.thisetc.q2.focus();
      document.thisetc.q2.select();
      return false;
    }
 
  if (document.thisetc.q3.value !="Those houses are near the beach."){
      alert("try again for 3");
       document.thisetc.q3.focus();
       document.thisetc.q3.select();
       return false; 
}
  if (document.thisetc.q4.value !="These books belong to George."){
      alert("try again for 4");
      document.thisetc.q4.focus();
      document.thisetc.q4.select();
      return false;
  }
  if (document.thisetc.q5.value !="Those dogs bark all night."){
      alert("try again for 5");
      document.thisetc.q5.focus();
      document.thisetc.q5.select();
      return false;
  }
  if (document.thisetc.q6.value !="Those computers are old."){
      alert("try again for 6");
      document.thisetc.q6.focus();
      document.thisetc.q6.select();
      return false;
  }
  if (document.thisetc.q7.value !="These lessons are very difficult."){
      alert("try again for 7");
      document.thisetc.q7.focus();
      document.thisetc.q7.select();
      return false;
  }
  if (document.thisetc.q8.value !="Those people sing badly."){
      alert("try again for 8");
      document.thisetc.q8.focus();
      document.thisetc.q8.select();
      return false;
  }
  if (document.thisetc.q9.value !="These exercises are easy."){
      alert("try again for 9");
      document.thisetc.q9.focus();
      document.thisetc.q9.select();
      return false;
  }
  if (document.thisetc.q10.value !="These men work at my shop."){
      alert("try again for 10");
      document.thisetc.q10.focus();
      document.thisetc.q10.select();
      return false;
  }
     
   alert("Good work. All your answers are correct.");
   return true;
}

function answers() {
    NewWin=window.open('answers_this_etc.html','NewWin',
   'toolbar=no,status=no,width=300,height=360');
}