
//dhtmlLoadScript("http://maps.google.com/maps?file=api&v=1&key="+googlekey);

  function dhtmlLoadScript(url) {

     var e  = document.createElement("script");
     e.src  = url;
     e.type ="text/javascript";
     document.getElementsByTagName("head")[0].appendChild(e);

  } // end dhtmlLoadScript()

  function dr_ShowMap(lat,lon,elid) {

    if (showmap && (MochiKit.DOM.getElement(elid))) {

      var map         = new GMap2(MochiKit.DOM.getElement(elid));
      map.addControl(new GSmallMapControl());

      var point       = new GLatLng(lat, lon);

      map.setCenter(point, 12);
      
      var icon        = new GIcon();
      icon.image      = "http://www.zcucina.com/images/images/basis_templates/10/z_pointer.png";
      icon.shadow     = "http://www.zcucina.com/images/images/basis_templates/10/z_shadow.png";
      icon.iconSize   = new GSize(48,54);
      icon.shadowSize = new GSize(48,54);
      icon.iconAnchor = new GPoint(10,51);
      icon.infoWindowAnchor = new GPoint(10,1);

      // Creates a marker at the given point with the given number label
      var marker      = new GMarker(point,icon);

      GEvent.addListener(marker, "click", function() {
        marker.openInfoWindowHtml("<p align=\"center\" style=\"text-size: 8pt; font-family: arial;\"><b>Z Cucina di Spirito</b><br>1368 Grandview Ave<br>Columbus, OH 43212</p>");
      });
      
      map.addOverlay(marker);

    } // end if

  } // end dr_ShowMap()
         
  showmap = true;