<!--//Hide from old browsers
function ch_rstr() {

	for (counter = 0; counter < document.custom.vacation_type_radio.length; counter++)
		{
		if (document.custom.vacation_type_radio[counter].checked){
			var str_rstr = document.custom.vacation_type_radio[counter].value;
			}
		}
        document.custom.vacation_type.value = str_rstr;
        //alert (str_rstr);
}

function processPage() {
	
	if (document.custom.departure_city_code.selectedIndex == 0){
		 alert ('Please fill in where are you Leaving From!')
		 document.custom.departure_city_code.focus();
	} else if (document.custom.destination_city_code.selectedIndex == 0){
		 alert ('Please fill in where are you Going To!')
		 document.custom.destination_city_code.focus();
	} else if ((document.custom.date_depart_mm.selectedIndex == 0)||(document.custom.date_depart_dd.selectedIndex == 0)||(document.custom.date_depart_yy.selectedIndex == 0)){
	    alert ('Please choose your Departure date!');
		document.custom.date_depart_mm.focus();
	} else if ((document.custom.date_return_mm.selectedIndex == 0)||(document.custom.date_return_dd.selectedIndex == 0)||(document.custom.date_return_yy.selectedIndex == 0)){
		 alert ('Please choose your Return date!')
		 document.custom.date_return_mm.focus();
	} else {
	this.checked = true;
	var date_depart = document.custom.date_depart_mm.value+"/"+document.custom.date_depart_dd.value+"/"+document.custom.date_depart_yy.value;
	var date_return = document.custom.date_return_mm.value+"/"+document.custom.date_return_dd.value+"/"+document.custom.date_return_yy.value;
	document.custom.date_depart.value = date_depart;
	document.custom.date_return.value = date_return;
	document.custom.submit();
	}
  }	
  
/*function processLnk(pnt_lnk) {
location.href ='htl_frame.asp?pnt_lnk='+pnt_lnk
}  */
	//-->