  <!--
  function DisplayWindow(windowType, frame)
    {
     if(!frame) frame=0;
     if (window.ImgTopo && !window.ImgTopo.closed) window.ImgTopo.close();
     if (window.CommentWin && !window.CommentWin.closed) window.CommentWin.close();

     if (windowType!="closeWindow")
       {
        (screen.width > 1023) ? Imtop=140 : Imtop=20;
        (screen.width > 1023) ? Imleft=180 : Imleft=40;

        switch (windowType)
         {
          case "photoWindow" :
            if (document.getElementById) fileName = '../commonphp/photowindow.php?f=' + frame;
            else fileName = '../commonphp/photowindow_ie4.php?f=' + frame;

            ImgTopo= window.open(fileName,'ImgTopo','width=792,height=564,top='+Imtop+',left='+Imleft);
            window.ImgTopo.focus();
            break;
            
          case "help_1" :
            ImgTopo= window.open('../common/' +windowType+ '.html','ImgTopo','width=500,height=300,top='+Imtop+',left='+Imleft+',scrollbars=1');
            window.ImgTopo.focus();
            break;

          case "help_4" :
            ImgTopo= window.open('../common/' +windowType+ '.html','ImgTopo','width=500,height=300,top='+Imtop+',left='+Imleft+',scrollbars=1');
            window.ImgTopo.focus();
            break;

          case "help_3" :
            ImgTopo= window.open('../common/' +windowType+ '.html','ImgTopo','width=450,height=250,scrollbars=1');
            window.ImgTopo.focus();
            break;

          case "help_tags" :
            ImgTopo= window.open('../common/' +windowType+ '.html','ImgTopo','width=650,height=500,top='+Imtop+',left='+Imleft+',scrollbars=1');
            window.ImgTopo.focus();
            break;

          case "updates" :
            ImgTopo= window.open('../common/' +windowType+ '.php','ImgTopo','width=650,height=400,scrollbars=1,top='+Imtop+',left='+Imleft);
            window.ImgTopo.focus();
            break;

          default :
            ImgTopo= window.open('..' +windowType,'ImgTopo','width=700,height=500,scrollbars=1,top='+Imtop+',left='+Imleft);
            window.ImgTopo.focus();
            break;
         }
       }
    }
  //-->