      function NewPopupWindow(URL,NAME,WIDTH,HEIGHT) {
        oNewWin = window.open(URL,"_blank","width="+String(WIDTH)+
                  ",height="+String(HEIGHT)+",dependent=no,scrollbars=yes,resizable=yes");
        oNewWin.focus();
      }

      function iFrameHeight() {
        if(document.getElementById && !(document.all)) {
          theFrame = document.getElementById('iframename');
          h = theFrame.contentDocument.body.scrollHeight;
          theFrame.style.height = h+15;
        } else if(document.all) {
          h = window.frames.iframename.document.body.scrollHeight;
          document.all.iframename.style.height = h+15;
        }
      }

