<!-- Read gateway dates details-->

if (getCookie("arrivalDay") != null)
		document.forms[1].arrival1.selectedIndex = getCookie("arrivalDay");
if (getCookie("arrivalMonth") != null)
		document.forms[1].arrival2.selectedIndex = getCookie("arrivalMonth");
if (getCookie("arrivalYear") != null)
		document.forms[1].arrival3.selectedIndex = getCookie("arrivalYear");
if (getCookie("departureDay") != null)
		document.forms[1].depart1.selectedIndex = getCookie("departureDay");
if (getCookie("departureMonth") != null)
		document.forms[1].depart2.selectedIndex = getCookie("departureMonth");
if (getCookie("departureYear") != null)
		document.forms[1].depart3.selectedIndex = getCookie("departureYear");
