function checkForm(myform)
  {
    if(myform.agree.checked) {
      return true;

    } else {
      alert("You must agree to the terms of the EULA to complete your purchase. Please check the box to continue.");
      window.location = "#eula";
    }
    return false;
  }