function OuvrePopUp(lib,taille)
{
nom=lib[0];
titre= lib[1];
FenHaut=taille[0];
FenLarge=taille[1];
ImgHaut=FenHaut-40;
n=eval(FenHaut+ImgHaut);
var y=(screen.height-FenHaut)/2;
var x=(screen.width-FenLarge)/2;
petiteFenetre = window.open("",n,"height="+FenHaut+",width="+FenLarge+",resizable=no,screenX="+x+",left="+x+",screenY="+y+",top="+y);
f=petiteFenetre.document;
f.write ('<head><style type="text/css">');
f.write ('h2 {margin-left:0px;margin-top: 5px;font-weight: bold; font-size: 12px; font-family: arial, helvetica, geneva, swiss; text-align: center}');
f.write ('</style>');
f.write ('</head><body bgcolor="#8F8F8F">');
f.write ("<img border='0' src="+nom+" height="+ImgHaut+"></br><h2>"+titre+"</h2></body>");
petiteFenetre.focus();
f.title="Katy Serra";
}