<!--
function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(40.705077, -73.649824), 13);
		map.addControl(new GSmallMapControl());
        map.openInfoWindow(map.getCenter(),
                           document.createTextNode("Classical Acupuncture Methods"));
      }
    }
//-->