// Ouvrir un popu pour imprimer le contenu d'une page
function printContents(url, div) {
	
	// ******** A PERFECTIONNER *******

		win = window.open(url,'print','height=600,width=600,top=50,left=100,scrollbars=1');
		win.focus();
}
