/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Lee Underwood | http://javascript.internet.com/ */
var agree=0;  // 0 = 'no', 1 = 'yes'

function agree2() {
  if (!document.getElementById) return false;
  agree=1;
  if (agree) {
    document.getElementById('enterName').style.visibility = 'visible';
  }
}

function agree3() {
    alert("You must first agree to our Terms & Conditions of Sale");
}