// Printing script by BRX
var compteur = 0;

function setPrintPage(el) {
	new Asset.css('script/css/print.css');
	removeEvents(el);
	el.setProperty('title', 'Cliquez pour imprimer');
	if(compteur == 0) {
		el.addEvent('click', function(){printMe();});
		compteur++;
	}
}

function printMe (el) {
	//alert('La fonction printMe est bien appele');
	window.print();
}
