function travelNowize() {

		// travelnow provided this code which takes the "p_altdate" and "n_nights" and does the math
		// to get a checkin and checkout date

		var intNight = document.forms['Turbotrip'].n_nights.value;
		var dt = new Date(document.forms['Turbotrip'].p_altdate.value);
		var day = dt.getDate();
		var day2 = day + document.forms['Turbotrip'].n_nights.selectedIndex+1;
		var month = dt.getMonth();

		document.forms['Turbotrip'].dd.value = day2;
		document.forms['Turbotrip'].dm.value = month;
		document.forms['Turbotrip'].ad.value = day;
		document.forms['Turbotrip'].am.value = month;


	}
