function win_open(pageHtml, width, height) {
	// On centre la feuille
	var left = (screen.width - width) / 2;
	var top = (screen.height - height) / 2;

	// On renseigne les properties
	winprops = "toolbar=0,location=0,directories=0,status=1,scrollbars=1,resizable=1,copyhistory=0,";
	winprops = winprops + 'height='+height+',width='+width+',top='+top+',left='+left;

	// On ouvre un popup
	window.open(pageHtml, "_blank", winprops);

    
	// On renvoi false, ainsi lors de l'appel dans le onclick d'un lien
	// le href n'est pas utilisé
	return false;
}
