
var agree=0;  // 0 = 'no', 1 = 'yes'

function agree2() {
  if (!document.getElementById) return false;
  agree=1;
  document.getElementById('box').style.background='#fff000';
  if (agree) {
    document.getElementById('enterName').style.visibility = 'visible';
  }
  document.enableform.box.focus();
}

function disagree() {
  if (!document.getElementById) return false;
  agree=0;
  if (!agree) {
    document.getElementById('enterName').style.visibility = 'hidden';
  }
  document.enableform.done.focus();
}

function goSubmit() {
  if (agree==0) {
    alert("You must agree to continue");
  } else if (agree==1 ) {
          window.location = "http://www.mfgokc.com/payment2.php"
  } else {
    alert("AGREE: You can insert the next step here");
  }
}


