2   function openShareUrl(url, initialWidth = 640, initialHeight = 480) {
 
   3     const width = Math.max(100, Math.min(screen.width, initialWidth));
 
   4     const height = Math.max(100, Math.min(screen.height, initialHeight));
 
   6     const left = screenLeft + ((outerWidth - width) / 2);
 
   7     const top = screenTop + ((outerHeight - height) / 2);
 
   8     const opts = `width=${width},height=${height},left=${left},top=${top},menubar=no,status=no,location=no`;
 
  10     window.open(url, "popup", opts);
 
  13   $(".ssb-icon").on("click", function (e) {
 
  14     const shareUrl = $(this).attr("href");
 
  15     if (!shareUrl.startsWith("mailto:")) {
 
  17       openShareUrl(shareUrl);