function imprimer(docToPrint) { 
	docPrint=window.open("","","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,width=445,height=600,left=100,top=100");

	docPrint.document.write ("<html><head><meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1'><title>SEP - IMPRESSION</title>");
	docPrint.document.write ("</head>");
	docPrint.document.write ("<body bgcolor='#ffffff' text='#FFFFFF' link='#FFCC00' vlink='#FFCC00' alink='#993300' leftmargin='0' marginwidth='0' topmargin='0' marginheight='0' scroll=no>");
	docPrint.document.write ("<embed src='print/"+docToPrint+".pdf' type='application/pdf' width='100%' height='100%'>");
	docPrint.document.write ("</body>");
	docPrint.document.write ("</html>");
	//location.reload();
	flag=true; 			// Mémoriser l'état fenêtre zoom = ouverte
	docPrint.focus();		// passe le popup devant l'écran */
}
