<!--
/********************************************************************************************************
Call Comment Window
********************************************************************************************************/
function CommentWindow(IdVoie,select,frame)
  {
   (screen.width > 1023) ? Imtop=130 : Imtop=20;
   (screen.width > 1023) ? Imleft=170 : Imleft=40;

   if (window.CommentWin && !CommentWin.closed && old_select == select && old_IdVoie == IdVoie) CommentWin.focus();
   else 
     {
      if (IdVoie !="") 
        {
         if (select == 'list') filename = "../comments/all_read.php?f="+ frame +"&IdVoie="+ IdVoie;
         else filename = "../comments/do_comment.php?f="+ frame +"&IdVoie="+ IdVoie;

         CommentWin= window.open(filename,'CommentWin','width=782,height=554,scrollbars=1,status=1,top='+Imtop+',left='+Imleft);
         old_select = select; old_IdVoie = IdVoie; CommentWin.focus();
        }
      else alert('Base de donnée Mysql indisponible.\n\nAccès aux commentaires impossible.\nActualisez la page pour vous reconnecter.');
     }
  }
//-->