          function ShowPopup (url, w, h)
          {
            ss = window.open(url,"Popup"," scrollbars=no, toolbar=no, fullscreen=no, resizable=yes,width="+w+",height="+h);
            return false;
          }

          function ShowNewPopup (Id, url, w, h)
          {
            ss = window.open(url, Id," scrollbars=no, toolbar=no, fullscreen=no, resizable=yes,width="+w+",height="+h);
            return false;
          }



          function ShowScrollablePopup (url, w, h)
          {
            ss = window.open(url,"Popup"," scrollbars=yes, toolbar=no, fullscreen=no, resizable=yes,width="+w+",height="+h);
            return false;
          }
