// ******************************************************************
// Impression d'une zone DOM: IE5+ Mozilla NN6 Win
// pascal.itos@wanadoo.fr
// http://www.dev35.com
// ******************************************************************
function PSR_imprimer () {
	var PSR_f1 = null;
	var PSR_content=document.getElementById('content_load').innerHTML;
	var PSR_title=document.getElementsByTagName('title')[0].innerText;
	if (PSR_f1) {if(!PSR_f1.closed) PSR_f1.close();}
	PSR_f1 = window.open ('',"PSR_f1", "height=500,width=600,menubar=yes,scrollbars=yes,resizable=yes,,left=10,top=10");  ;
	PSR_f1.document.open();
	PSR_f1.document.write("<html><head><style>*{font-size:11px}h1{font-size:17px}h2, h2 a{font-size:15px}h3{font-size:13px}h4{font-size:13px}img{margin-right:5px;margin-bottom:5px;}</style><title>" + PSR_title + "</title></head><body bgcolor='#ffffff'>"+PSR_content+"</body></html>");
	
	
	PSR_f1.document.close();
	//PSR_f1.document.getElementById('PSR_print').style.visibility='hidden';
	PSR_f1.focus();
	PSR_f1.print();
	
}

