<!--
function ShowPictureBrol(lnk) {
 var w = window.open(lnk, "Picture", "toolbar=no,scrollbars=yes,location=no,directories=no,menubar=yes,resizable");
 w.moveTo(0,0);
 w.resizeTo(screen.width,screen.height);
 w.focus();
}

function ShowPicture(lnk) {
 var h=screen.height-30-170;
 var t=lnk.replace("Big/", "").replace(".jpg", "");
 lnk=lnk.replace(/é/g, "%E9");
 var d="<html><head><title>"+t+"</title>";
 d=d+"</head><body onLoad='focus();' bgcolor='black' link='#FFFF00' color='white' vlink='#FFFF00'><div align='center'>";
 d=d+"<a href='javascript:close();'><img src='"+lnk+"' border='0' alt='"+t+"' title='"+t+"' height='"+h+"'></a><br>";
 //d=d+"<img src='"+lnk+"' border='0' alt='"+t+"' title='"+t+"' height='"+h+"'><br>";
 d=d+"<small style='color:red'><a href='"+lnk+"'>Plein écran</a> | <a href='javascript:close();'>Fermer</a></small>";
 d=d+"</div></body></html>";
 var w=window.open("", "Picture", "toolbar=no,scrollbars=yes,location=no,directories=no,menubar=yes,resizable");
 w.document.open();
 w.document.write(d);
 w.document.close();
 w.moveTo(0,0);
 w.resizeTo(screen.width,screen.height-30);
 w.focus();
}
//-->