<!--
    function LodgingNavigation( MyAction, PlaceID ){
        document.forms[0].placeString.value = "";
        document.forms[0].searchType.value = "";
        
        if ( MyAction == 'LodgNav'){
            document.forms[1].action =
                document.forms[1].action
                    .replace(/(\w*)\/do\/hotel\/(\w+)(.*)/,
                             "$1/do/hotel/LodgingNavigation$3")
         } else if (MyAction == 'HotelSearch') {
            document.forms[1].action = 
                 document.forms[1].action
                    .replace(/(\w*)\/do\/hotel\/(\w+)(.*)/,
                             "$1/do/hotel/ProcessHotelForm$3")
        }
        document.forms[1].placeId.value = PlaceID;
        document.forms[1].submit();
    }
    
    function LodgingSearch(){
        newPath = document.forms[1].action.replace(/(\w*)\/do\/hotel\/(\w+)(.*)/, "$1/do/hotel/ProcessHotelSearch$3")

        document.forms[1].action = newPath
        document.forms[1].placeString.value = 
            document.forms[0].placeString.value;
        
        document.forms[1].placeId.value = '-1';
        
        for (i=0; i<4; i++){
            if(document.forms[0].searchType[i].checked) 
            document.forms[1].searchType.value = document.forms[0].searchType[i].value;
        }
        document.forms[1].submit();
    }

//-->

