function start() {
   document.opposites2.woman.focus();
}

function validate() { 
   
     if (document.opposites2.woman.value !="man") {
      alert("try again for woman");
      document.opposites2.woman.focus();
      document.opposites2.woman.select();
      return false;
  }
  if (document.opposites2.married.value !="single") {
      alert("try again for married");
      document.opposites2.married.focus();
      document.opposites2.married.select();
      return false;
  }
  if (document.opposites2.sell.value !="buy") {
      alert("try again for sell");
      document.opposites2.sell.focus();
      document.opposites2.sell.select();
      return false;
}
  if (document.opposites2.wet.value !="dry") {
     alert("try again for wet");
     document.opposites2.wet.focus();
     document.opposites2.wet.select();
     return false;
} 
  if (document.opposites2.slow.value !="fast") {
     alert("try again for slow");
     document.opposites2.slow.focus();
     document.opposites2.slow.select();
     return false;
}
  if (document.opposites2.hello.value !="goodbye") {
     alert("try again for hello");
     document.opposites2.hello.focus();
     document.opposites2.hello.select();
     return false;
}
  if (document.opposites2.fat.value !="thin") {
     alert("try again for fat");
     document.opposites2.fat.focus();
     document.opposites2.fat.select();
     return false;
}
  if (document.opposites2.good.value !="bad") {
     alert("try again for good");
     document.opposites2.good.focus();
     document.opposites2.good.select();
     return false;
}
  if (document.opposites2.big.value !="small") {
     alert("try again for big");
     document.opposites2.big.focus();
     document.opposites2.big.select();
     return false;
}
  if (document.opposites2.night.value !="day") {
     alert("try again for night");
     document.opposites2.night.focus();
     document.opposites2.night.select();
     return false;
}
  if (document.opposites2.on.value !="off") {
     alert("try again for on");
     document.opposites2.on.focus();
     document.opposites2.on.select();
     return false;
}
  if (document.opposites2.yes.value !="no") {
     alert("try again for yes");
     document.opposites2.yes.focus();
     document.opposites2.yes.select();
     return false;
}
  if (document.opposites2.open.value !="close") {
     alert("try again for open");
     document.opposites2.open.focus();
     document.opposites2.open.select();
     return false;
}
  if (document.opposites2.stop.value !="start") {
     alert("try again for stop");
     document.opposites2.stop.focus();
     document.opposites2.stop.select();
     return false;
}
  if (document.opposites2.present.value !="absent") {
     alert("try again for present");
     document.opposites2.present.focus();
     document.opposites2.present.select();
     return false;
}

  if (document.opposites2.old.value !="new") {
     alert("try again for old");
     document.opposites2.old.focus();
     document.opposites2.old.select();
     return false;
}
  alert("All your answers are correct.");
  return true;
}
  
function answers() {
    NewWin=window.open('answers2.html','NewWin',
   'toolbar=no,status=no,width=300,height=300');
}