<!--

// Comme son nom l'indique....

function ouvre_fenetre(adresse,largeur,hauteur) {
	
var nLeft=window.screen.width/2-(largeur/2);
var nTop=window.screen.height/2-(hauteur/2);

window.open(adresse,'','toolbar=no,location=no,directories=no,menubar=no,scrollbars=no,status=no,resizable=0,left='+nLeft+', top='+nTop+', width='+largeur+',height='+hauteur);
}
//-->