function updateStart() {
	var fobj = document.getElementById('resform');
	var str;
	str = 	fobj.arriveMonth.options[fobj.arriveMonth.selectedIndex].value +
			"/" +
			fobj.arriveDay.options[fobj.arriveDay.selectedIndex].value +
			"/" +
			fobj.arriveYear.options[fobj.arriveYear.selectedIndex].value;	

	fobj.begindate.value = str;
} 

function updateEnd() {
	var fobj = document.getElementById('resform');
	var str;
	str = 	fobj.departMonth.options[fobj.departMonth.selectedIndex].value +
			"/" +
			fobj.departDay.options[fobj.departDay.selectedIndex].value +
			"/" +
			fobj.departYear.options[fobj.departYear.selectedIndex].value;	

	fobj.enddate.value = str;
} 

function setAction() {

	var fobj = document.getElementById('resform');
	var str;
	
	str = "mode=" + fobj.mode.value
		+ "&autosearch=" + fobj.autosearch.value
		+ "&begindate=" + fobj.begindate.value
		+ "&enddate=" + fobj.enddate.value
		+ "&arriveDay=" + fobj.arriveDay.value
		+ "&arriveMonth=" + fobj.arriveMonth.value
		+ "&arriveYear=" + fobj.arriveYear.value
		+ "&departDay=" + fobj.departDay.value
		+ "&departMonth=" + fobj.departMonth.value
		+ "&departYear=" + fobj.departYear.value
		+ "&adults=" + fobj.adults.value
		+ "&children=" + fobj.children.value									

	fobj.action = fobj.action + "?" + str;
	pageTracker._linkByPost(fobj);
	return false;
}