var win;
function telecharger(id)
{
win = window.open('','Téléchargements', 'width=150,height=25');
win.document.writeln('<head><title>Téléchargement en cours</title></head><body background="imgs/Fond.gif"><font face="Arial, Helvetica, sans-serif" size="2"><p align="center"><b>Téléchargement lancé</b></p></font></body>');
win.still_exists = 1;
win.location = '../download.php?NODOC='+id;
setTimeout("close_download()",5000);
};

function close_download()
{
if (win.still_exists == 1)
  {
  win.close();
  setTimeout("close_download()",1000);
  }
};