<!--
function CommentWindow(filepath)
  {
   (screen.width > 1023) ? Imtop=120 : Imtop=5;
   (screen.width > 1023) ? Imleft=100 : Imleft=10;

   if (window.CommentWin && !window.CommentWin.closed && filepath_old == filepath) window.CommentWin.focus();
   else 
     {
      CommentWin= window.open(filepath,'CommentWin','width=782,height=554,scrollbars=1,status=1,top='+Imtop+',left='+Imleft);
      filepath_old = filepath;
      window.CommentWin.focus();
     }
  }
//-->
