function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("directions"));
        map.setCenter(new GLatLng(25.7920433,-80.1413662), 16);
		map.setUIToDefault();
		map.addOverlay(new GMarker(new GLatLng(25.7920433,-80.1413662)));
		map.openInfoWindowHtml(map.getCenter(),"<b><big>17 Restaurant and Sushi Bar</big></b><br><big>1205 17th St, Miami Beach Fl</big><br><br>Just one block away from Lincoln Rd.");
      }
    }
