  <!--
  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 == 1024) ? Imtop=140 : Imtop=20;
        (screen.width == 1024) ? 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 "googlemap" :
            ImgTopo= window.open('../commonphp/' +windowType+ '.php' + frame,'ImgTopo','width=792,height=564,top='+Imtop+',left='+Imleft);
            window.ImgTopo.focus();
            break;
            
          case "geoportail" :
            ImgTopo= window.open('../commonphp/' +windowType+ '.php' + frame,'ImgTopo','width=792,height=564,top='+Imtop+',left='+Imleft);
            window.ImgTopo.focus();
            break;
            
          case "help_2" :
            ImgTopo= window.open('../common/' +windowType+ '.html','ImgTopo','width=500,height=300,scrollbars=1');
            window.ImgTopo.focus();
            break;

          case "help_tags" :
            ImgTopo= window.open('../common/' +windowType+ '.html','ImgTopo','width=650,height=420,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_4" :
            ImgTopo= window.open('../common/' +windowType+ '.html','ImgTopo','width=500,height=300,top='+Imtop+',left='+Imleft+',scrollbars=1');
            window.ImgTopo.focus();
            break;

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

          default :
           (screen.width > 1023) ? Imtop=140 : Imtop=0;
           (screen.width > 1023) ? Imleft=140 : Imleft=0;

           (screen.width > 1023) ? Imwidth=950 : Imwidth=780;
           (screen.width > 1023) ? Imheight=800 : Imheight=520;

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