function ouvre(nom)
{
	var hauteur=200;
	var largeur=400;
	var top=(screen.height-hauteur)/4;
	var left=(screen.width-largeur)/2;

	t=window.open("/micropaiement/"+nom+".html", "IGmicropayement", "toolbar=0,scrollbars=0,location=0,status=0,menubar=0,directories=0,resizable=0,width="+largeur+",height="+hauteur+",left="+left+",top="+top)
	t.focus();
}