function vfnShowMapPopup(title) {
   
    sURL = "LegislativeMap.aspx?title=" + title;

    var ww = window.open(sURL, "Popup", "toolbar=no,menubar=yes,status=no,location=no,scrollbars=no,resizable=yes");
    //adds the window to the SessionManager on parent page (eg FormGenerator etc)
    //var myPopupW = (typeof self.AddPopupToSessionManager != "undefined") ? self : self.parent;
    //myPopupW.AddPopupToSessionManager(ww);

}
