    function setImageSize(theImage) {   

      if (theImage.height > 100) {
        theImage.height = 100;
      }
   }

    function showPicture(imageSrc) {
      window.open(imageSrc,'','menubar=no')
   }

    function showPictureAll(newsId) {
      newWindow = window.open('','','menubar=no');
      
      newWindow.document.location.href = "default.asp?action=listPictures&newsid="+newsId;
   }

