  <!--
  function checkEmail(form)
   {
    if (form.Email.value.indexOf('@') == -1)
      {
       alert('Adresse Email incorrecte.\n\nVeuillez entrer une adresse de courrier électronique valide');
       form.Email.select();
       form.Email.focus();
       return false;
      }
    else
      {
       return true;
      }
   }

  (screen.width > 1023) ? Imtop=100 : Imtop=5;
  (screen.width > 1023) ? Imleft=90 : Imleft=10;

  function OpenWindow(filepath)
    {
     if (filepath.search('phorum')!=-1)
       {
        if (window.PhorumWin && !window.PhorumWin.closed) window.PhorumWin.focus();
        else PhorumWin = window.open(filepath,'PhorumWin','width=780,height=450,scrollbars=1,status=1,toolbar=1,menubar=1,location=1,resizable=1,top='+Imtop+',left='+Imleft);
       }
     else if (filepath.search('updates')!=-1)
       {
        if (window.UpdateWin && !window.UpdateWin.closed) window.UpdateWin.focus();
        else UpdateWin= window.open('../common/'+filepath,'UpdateWin','width=650,height=400,scrollbars=1,status=1,top='+(Imtop+60)+',left='+(Imleft+70));
       }
     else
       {
        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+30)+',left='+(Imleft+40));
        filepath_old = filepath; window.CommentWin.focus();
       }
    }
  //-->