
function Widgets(what) {

 if ( what == "flights") {
  d_flights.style.display = "";
  d_hotels.style.display = "none";
  d_cruises.style.display = "none";
  d_car.style.display = "none";
  d_vacations.style.display = "none";
 };

 if (what == "hotels") {
  d_flights.style.display = "none";
  d_hotels.style.display = "";
  d_cruises.style.display = "none";
  d_car.style.display = "none";
  d_vacations.style.display = "none";
 };

 if (what == "cruises") {
  d_flights.style.display = "none";
  d_hotels.style.display = "none";
  d_cruises.style.display = "";
  d_car.style.display = "none";
  d_vacations.style.display = "none";
 };

 if (what == "car") {
  d_flights.style.display = "none";
  d_hotels.style.display = "none";
  d_cruises.style.display = "none";
  d_car.style.display = "";
  d_vacations.style.display = "none";
 };

 if (what == "vacations") {
  d_flights.style.display = "none";
  d_hotels.style.display = "none";
  d_cruises.style.display = "none";
  d_car.style.display = "none";
  d_vacations.style.display = "";
 };

};
