	// Utilisation: onclick="pop_up('fichier.html','popup',largeur,hauteur,'options facultatives');return false;"
	// Personalisation: largeur, hauteur: /2 pour centrer, /0 pour coller au bord
	// les pop_up s'ouvrent directement au centre
	function pop_up( fichier, nom, largeur, hauteur, options )
	{
		var id = Math.round( Math.random()*100);
		var gauche = (screen.width -   largeur)/2;
		var haut   = ( screen.height - hauteur )/0;
		if ( options ){options='width='+largeur+'px,height='+hauteur+'px,top='+haut+',left='+gauche+','+options;
		}
		else
		{
			options = 'width='+largeur+'px,height='+hauteur+'px,top='+haut+',left='+gauche;
			}
			document.open( fichier, nom + id, options );
			}
