
function OpenCityMap (pCity, pState, pCountry)
{
    //var lWindowOptions = "width=600,height=528,toolbar=no,menubar=no,scrollbars=yes,resizable=yes, modal=yes";
    var lWindowOptions = "width:600;height:528;toolbar:no;menubar:no;scrollbars:yes;resizable:yes";
    var lWindowPath = "http://sas.radisson.com/hoteldirectory/map.jsp?type=city.map&city=" + pCity + "&state=" + pState + "&country=" + pCountry;
    //window.open(lWindowPath, "Map", lWindowOptions);
    window.showModalDialog(lWindowPath, "Map", lWindowOptions);
}
function OpenHotelMap (pBrandUrl, pHotelCode)
{
  var lWindowOptions = "width=800,height=550,toolbar=no,menubar=no,scrollbars=yes,resizable=yes";
  //var lWindowPath = "http://" + pBrandUrl + "/hoteldirectory/map.jsp?hotelcode=" + pHotelCode + "&type=hotel.map";
  var lWindowPath = "http://www.radissondestinationguide.com/locationMap.process/?hotelCode=" + pHotelCode;
  window.open(lWindowPath, "Map", lWindowOptions);
}
    
