function affiche2(image, titre, legende, width, height, nltexte,dispo)
{

var widthfen = 0;
var heightfen = 0;
var largtable=0;
widthfen = width+30;
heightfen=height+115+nltexte*20+30;
largtable=widthfen - 20;

disponible ="<img src=\"..//assets//images/GreenBullet.gif\" alt=\"disponible, available\">";

CodeHtml = "<html><head></head>";
CodeHtml += "<title>Pascal Oudet</title>";
CodeHtml += "<BODY BGCOLOR=\"#000000\">";
CodeHtml += "<div align=\"center\">";
CodeHtml += "<font size=+2 COLOR=\"#FFFFFF\"><b>"+titre+"</b></font><br>";
CodeHtml += "<table border=\"0\" cellspacing=\"0\" cellpadding=\"0\"><tr><td width=\""+largtable+"\" align=\"CENTER\" >";
CodeHtml += "<font color=\"FFFFFF\">"+legende;
CodeHtml += "</td>";
CodeHtml += "<td width =\"15\" valign=\"top\">";
if (dispo==1) {
	CodeHtml += disponible;
		}
CodeHtml += "</td></tr></table>";

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, resizeable=no");
photo.resizeTo(widthfen, heightfen);

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

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

var widthfen = 0;
var heightfen = 0;
widthfen = width+30;
heightfen=height+115+nltexte*20+30;


CodeHtml = "<html><head></head>";
CodeHtml += "<title>Pascal Oudet</title>";
CodeHtml += "<BODY BGCOLOR=\"#000000\">";
CodeHtml += "<div align=\"center\">";
CodeHtml += "<font size=+2 COLOR=\"#FFFFFF\"><b>"+titre+"</b></font><br>";
CodeHtml += "<font COLOR=\"#FFFFFF\">"+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, heightfen);

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

