                   function emishare_click(social_utility) {
                       var statusType = "";
                       var createURL = "";
                       var tempurl = "";
                       url = location.href;
                       //url = "http://mi.gov";
                           createURL = encodeURIComponent(url);
                           statusType = "Reading:"
                           //alert(social_utility);
                  
                       t = document.title;
                       if (social_utility == "twitter") {
                           window.open('http://twitter.com/home?status= ' + statusType + "%20" + encodeURIComponent(url));
                       }
                       if (social_utility == "facebook") {
                           window.open('http://www.facebook.com/sharer.php?u=' + createURL, 'sharer', 'toolbar=0,status=0,width=626,height=436');
                       }
                       if (social_utility == "digg") {
                           window.open('http://digg.com/submit?url=' + url + '&title=' + t);
                       }

                       if (social_utility == "delicious") {
                           window.open('http://del.icio.us/post?v=2&url=' + encodeURIComponent(url) + '&title=' + encodeURIComponent(t));
                       }

                       if (social_utility == "reddit") {
                           window.open('http://reddit.com/submit?url=' + encodeURIComponent(url) + '&title=' + encodeURIComponent(t));
                       }

                       if (social_utility == "newsvine") {
                           window.open('http://www.newsvine.com/_tools/seed&save?u=' + encodeURIComponent(url) + '&T=' + encodeURIComponent(t));
                       }

                       if (social_utility == "stumbleupon") {
                           window.open('http://stumbleupon.com/submit?url=' + url + '&title=' + encodeURIComponent(t));
                       }
                       if (social_utility == "google") {
                           window.open('http://www.google.com/bookmarks/mark?op=edit&bkmk=' + url + '&title=' + encodeURIComponent(t));
                       }
                       if (social_utility == "yahoo") {
                           window.open('http://myweb.yahoo.com/myresults/bookmarklet?u=' + url + '&t=' + encodeURIComponent(t) + "&ei=UTF");
                       }
                       if (social_utility == "bookmark") {
                           if (document.all)
                               window.external.AddFavorite(url, t)
                           else if (window.sidebar) // firefox
                               window.sidebar.addPanel(t, url, "");
                      }
                      return false;
                  }
                function togglesharethisContent() {
                    var sharethisContentBlock = document.getElementById('sharethisContent');
                    sharethisContentBlock.className = (sharethisContentBlock.className == 'blockOpen') ? 'blockClosed' : 'blockOpen';
                }