// gmaps popup
  // format the popup args (no telephone)
  function gmaps_popup(markerTitle, markerLink, address, size) {
    gmaps_popup_tel(markerTitle, markerLink, address, "", size);
  }

  function gmaps_popup_tel(markerTitle, markerLink, address, phone, size) {
    var url = "http://folsomstreetevents.org/gmaps/gmaps_popup.php";
    // var name = "_blank";
    var name = "smallmap";
    var winSize = size + 15;
    var features = "location=0,menubar=0,resizable=0,scrollbars=0,status=0,titlebar=0,width="+winSize+",height="+winSize;
    var mywindow = window.open(url + "?mapMarker=" + markerTitle + "&mapLink=" + escape(markerLink) + "&mapAddress=" + address + "&mapSize=" + size + "&phone=" + phone, name, features);
    mywindow.moveTo(0,0);
  }
//
