// JavaScript Document
function GrandePhoto(titre,photo,W,H) {
  myWin=open("","newin","width="+W+",height="+H+",resizable=1,scrollbars=0,status=0");
  myWin.document.open();
  if (myWin.blur) myWin.focus();
  myWin.resizeTo(W+8,H+56);
  myWin.document.write('<html><head><title>'+titre+'</title></head><body BGCOLOR="#ffffff" marginwidth="0" marginheight="0" topmargin="0" leftmargin="0">');
  myWin.document.write('<table border="0" cellspacing="0" cellpadding="0"><tr><td>');
  myWin.document.write('<a href="javascript:window.close();" alt="Cliquez pour fermer">');  
  myWin.document.write('<img src="'+photo+'" width="'+W+'" height="'+H+'" border="0" />');
  myWin.document.write('</a>');
  myWin.document.write("</table></tr></td>");
  myWin.document.write("</body></html>");
  myWin.document.close();  
}
function Doc () {
	alert('Cliquez sur le bouton ENREGISTRER dans la fenêtre suivante');
	var lien = "dossier_pdf.php";
	var window2=window.open(lien,"Doc",'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=550,height=210,top=0,left=0');
}