window.onload = function()
  {
  var instructions = document.getElementById("instructions");
  instructions.onclick = function()
    {
    document.location = "instructions";
    return false;
    }
  var email = document.getElementById("email");
  email.focus();
  }
