function affiche(image, titre, legende, width, height, nltexte)
{

if ((screen.width<1024) || (screen.height<768))
{
	width *= 0.7;
	height *= 0.7;
}

var widthfen = width + 20;
var heightfen = height + 60 +nltexte*20;
CodeHtml = "<html><head></head>";
CodeHtml += "<title>La vie en Bois</title>";
CodeHtml += "<BODY background=\"wood.gif\">";
CodeHtml += "<div align=\"center\">";
CodeHtml += "<font size=+2><b>"+titre+"</b></font><br>";
CodeHtml += legende +"<br>";
CodeHtml += "<img src="+image+" ALT="+titre+" border=0 width="+width+" height="+height+">";
CodeHtml += "<br><a href=\"javascript:void(window.close())\">Fermer&nbsp;/Close</a>";
CodeHtml += "</body></html>";
photo = window.open("","photow","height="+heightfen+",width="+widthfen+",status=no,toolbar=no,menubar=no,location=no,titlebar=no");
photo.resizeTo(widthfen+10, heightfen+80);

photo.focus();
photo.document.open();
photo.document.write(CodeHtml);
photo.document.close();
}
