<!--

function dispatch() {
if (document.form.cat_search[document.form.cat_search.selectedIndex].value == "Accomodations") {goAccomodations()};
if (document.form.cat_search[document.form.cat_search.selectedIndex].value == "CST_NEW_Entertainment-Entertainment_Listings-Restaurants") {goRestaurants()};
if (document.form.cat_search[document.form.cat_search.selectedIndex].value == "everything") {goEverything()};
}

function goAccomodations(){
        document.form.method="Get";
        document.form.action="http://www.totallybarbados.com/cgi-bin/accommodations/search.cgi";
        document.form.submit();
      }


function goRestaurants(){
        document.form.method="Get";
        document.form.action="http://www.totallybarbados.com/cgi-bin/barbados/search2.cgi";
        document.form.submit();
      }


function goEverything(){
        document.form.method="Get";
        document.form.action="http://www.totallybarbados.com/cgi-bin/barbados/search2.cgi";
        document.form.submit();
      }


// -->
