// JavaScript Document
<!--
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://www.travelnow.com/index.jsp?pageName=groups&cid=78447";
        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);
}
//-->
