// JavaScript Document
	function popup(url, titre, largeur, hauteur, scroll) 
	{
		window.open(url, titre, 'width=' + largeur + ', height=' + hauteur + ', scrollbars=' + scroll +',top='+((screen.height-hauteur)/2)+',left='+((screen.width-largeur)/2));
	} 
