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

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