<!--
function go(nav) {
	if (nav == "navihotel"){ destination = document.all.hotelhelpform.navihotel.value;}
	if (nav == "navicar") {destination = document.all.carhelpform.navicar.value;}
	if (nav == "navilmd") {destination = document.all.lmdhelpform.navilmd.value;}
	if (nav == "navict") {destination = document.all.cthelpform.navict.value;}
	if (nav == "navishowtix") {destination = document.all.showhelpform.navishowtix.value;}

	if (destination) location.href = destination;
}

function unHider() {

	if (document.all.product.value == "hoteldiv") {
		document.all.hoteldiv.style.display = 'block';
		document.all.hotelhelp.style.display = 'block';
		document.all.cardiv.style.display = 'none';
		document.all.carhelp.style.display = 'none';
		document.all.lmddiv.style.display = 'none';
		document.all.lmdhelp.style.display = 'none';
		document.all.ctdiv.style.display = 'none';
		document.all.cthelp.style.display = 'none';
		document.all.showdiv.style.display = 'none';
		document.all.sthelp.style.display = 'none';
	}

	if (document.all.product.value == "cardiv") {
		document.all.hoteldiv.style.display = 'none';
		document.all.hotelhelp.style.display = 'none';
		document.all.cardiv.style.display = 'block';
		document.all.carhelp.style.display = 'block';
		document.all.lmddiv.style.display = 'none';
		document.all.lmdhelp.style.display = 'none';
		document.all.ctdiv.style.display = 'none';
		document.all.cthelp.style.display = 'none';
		document.all.showdiv.style.display = 'none';
		document.all.sthelp.style.display = 'none';
	}

	if (document.all.product.value == "lmddiv") {
		document.all.hoteldiv.style.display = 'none';
		document.all.hotelhelp.style.display = 'none';
		document.all.cardiv.style.display = 'none';
		document.all.carhelp.style.display = 'none';
		document.all.lmddiv.style.display = 'block';
		document.all.lmdhelp.style.display = 'block';
		document.all.ctdiv.style.display = 'none';
		document.all.cthelp.style.display = 'none';
		document.all.showdiv.style.display = 'none';
		document.all.sthelp.style.display = 'none';
	}

	if (document.all.product.value == "ctdiv") {
		document.all.hoteldiv.style.display = 'none';
		document.all.hotelhelp.style.display = 'none';
		document.all.cardiv.style.display = 'none';
		document.all.carhelp.style.display = 'none';
		document.all.lmddiv.style.display = 'none';
		document.all.lmdhelp.style.display = 'none';
		document.all.ctdiv.style.display = 'block';
		document.all.cthelp.style.display = 'block';
		document.all.showdiv.style.display = 'none';
		document.all.sthelp.style.display = 'none';
	}

	if (document.all.product.value == "showdiv") {
		document.all.hoteldiv.style.display = 'none';
		document.all.hotelhelp.style.display = 'none';
		document.all.cardiv.style.display = 'none';
		document.all.carhelp.style.display = 'none';
		document.all.lmddiv.style.display = 'none';
		document.all.lmdhelp.style.display = 'none';
		document.all.ctdiv.style.display = 'none';
		document.all.cthelp.style.display = 'none';
		document.all.showdiv.style.display = 'block';
		document.all.sthelp.style.display = 'block';
	}

}

// -->