// Fond	1 = diffusion interdite

function imprimer(fond) {

	var popup=open("about:blank","Impression","width=400,height=160");
//	var popup=open("about:blank","Impression");

	popup.document.open();
	popup.document.writeln("<html><head><title>PAGE D'IMPRESSION - BOURSICA                            </title>",
		"<META http-equiv='Content-Type' CONTENT='text/html; charset=windows-1252'>",
		"<link rel='stylesheet' media='screen' type='text/css' href='/css/imprim.css'/>",
		"<link rel='stylesheet' media='print' type='text/css' href='/css/imprim.css'/>",
		"</head>",

		"<body onload='window.print();window.close()'>",
//		"<body>",

		(fond==1?"<img border=0 src='/images/diffusion.png' style='position:absolute; right:10px; top:10px;'>":""),
		"<div style='position:absolute'>",

		document.getElementById("texteacopier").innerHTML,

		"</div>",
		"</body></html>");
	popup.document.close();
}

