function enable_gtsp_hole() {
document.registration.gtsp_des_hole.style.visibility='visible';
var y=document.createElement('option');
y.text='No'
var x=document.getElementById("gtsp_cart_choice");

	try {
	x.add(y,null); // standards compliant
	}
	catch(ex) {
	x.add(y); // IE only
	}
document.registration.gtsp_des_hole.focus()
}

function disable_gtsp_hole() {
document.registration.gtsp_des_hole.style.visibility='hidden';
var x=document.getElementById("gtsp_cart_choice")
  x.remove(1);
}

function enable_gtsp_website() {
document.registration.gtsp_website.disabled=false;
document.registration.gtsp_website.focus()
}

function disable_gtsp_website() {
document.registration.gtsp_website.disabled=true;
}