// JavaScript Documentfunction switchAbilityById(enableFields,disableFields){	var disableThis = disableFields.split(",");	var enableThis = enableFields.split(",");	var obj;	for (var i=0; disableThis != '' && i < disableThis.length; i++){		obj=document.getElementById(disableThis[i]);		obj.disabled = true;	}	for (var i=0; enableThis != '' && i < enableThis.length; i++){		obj=document.getElementById(enableThis[i]);		obj.removeAttribute('disabled');	}}function faqWin() {		smallFaq = open("mini/faqMini_services.htm","servicesInfo","width=350,height=120,top=5,left=5");		}		function faqRedirectServ() {	location.href="../faq.htm";	smallFaq.close();}function voucherWin() {		smallVoucher = open("mini/faqMini_google.htm","voucherInfo","width=350,height=265,top=7,left=7");		}	function faqRedirectVouch() {		location.href="../faq.htm";		smallVoucher.close();		}			function dessertWin() {		smallDessert = open("mini/faqMini_dessert.htm","dessertInfo","width=430,height=360,top=9,left=9");}function faqRedirectDess() {	location.href="../faq.htm";	smallDessert.close();}function breakfastWin() {		smallBreakfast = open("mini/packagesMini_breakfast.htm","breakfastInfo","width=430,height=210,top=9,left=9");}function packRedirectBreakfast() {	location.href="../features.htm";	smallBreakfast.close();}function lunchWin() {		smallLunch = open("mini/packagesMini_lunch.htm","lunchInfo","width=430,height=210,top=7,left=7");}function packRedirectLunch() {	location.href="../features.htm";	smallLunch.close();}function dinnerWin() {		smallDinner = open("mini/packagesMini_dinner.htm","dinnerInfo","width=430,height=210,top=5,left=5");}function packRedirectDinner() {	location.href="../features.htm";	smallDinner.close();}