<!--
// List Options
var checkerOptions=new Array('availabilityCheckerHotel','availabilityCheckerSelf');

// Switch Option Container
function switchChecker(id){	
	// Reset All Hotel Fields
	hotelReset();
	// Reset All Self Catering Fields
	selfReset();
	// Hide All Options
	hideAllOptions();
	// Show Selected Option
	showoption(id);
}

// Hide All Options
function hideAllOptions(){
	// Loop All Options And Call Function To Hide Each One
	for (var i=0;i<checkerOptions.length;i++){
		hideOption(checkerOptions[i]);
	}		  
}

// Hide Option
function hideOption(id) {
	// Get Option And Set Display None
	if (document.getElementById) {
		document.getElementById(id).style.display = 'none';
	}
}

// Show Option
function showoption(id) {
	// Get Option And Set Display Block
	if (document.getElementById) { 
		document.getElementById(id).style.display = 'block';
	}
}
-->