function setCSC(city,state,country) { if (city != "") { document.hotSearch.cityRadio2.checked=false; document.hotSearch.cityText.value=''; document.hotSearch.city.value=city; document.hotSearch.stateProvince.value=state; document.hotSearch.country.value=country; } } function submitForm(form) { if (form.numberOfRooms.selectedIndex == 8) { window.location="http://system.exclusivehotels.com/index.jsp?pageName=groups&cid=119400"; return false; } if (document.hotSearch.cityText.value == "" && document.hotSearch.city.value == "") { alert('must enter city'); return false; } if (document.hotSearch.cityText.value != "") { document.hotSearch.city.value=document.hotSearch.cityText.value; document.hotSearch.stateProvince.value=''; document.hotSearch.country.value=''; } return submitGuestInfoForm(form); }