function gid(id) { return document.getElementById(id); }

function popImage(id) {
	document.getElementById("i"+id).style.display='block';
	document.getElementById("b"+id).style.display='block';
}

function hideImage(id) {
	document.getElementById("i"+id).style.display='none';
	document.getElementById("b"+id).style.display='none';
}

function toggleElement(id) {
	gid(id).style.display = (gid(id).style.display=='none') ? 'inline' : 'none';
}

function DoSubmitEnable() {
	if (document.forms.Booking.TC.checked)
		{document.Booking.Sub.disabled=false;}
	else
		{document.Booking.Sub.disabled=true;}
}
