/* auteur: Éric Lapierre */
/* date de creation: 11/24/00 */

function FenetreImage(image)
{
var MonImage = new Image();
MonImage.src = image;

hauteur = 0;
largeur = 0;
param = "height="+hauteur+",width="+largeur+",fullscreen=1,resizable=0,toolbar=0,location=0,status=0,directories=0,menubar=0,scrollbars=1";

winImage = document.open("","win",param);
if (navigator.appName != "Netscape")
    {
    winImage.moveTo(-1,-2);
    }
winImage.document.write("<TITLE>Image - "+ document.title +"</TITLE>");
winImage.document.write("<STYLE>");
winImage.document.write("<!-- ");
winImage.document.write("A:link, A:visited, A:active, A:hover { text-decoration: none }");
winImage.document.write("A:hover { color: white}");
winImage.document.write("A:active { color: yellow }");
winImage.document.write("//-->");
winImage.document.write("</STYLE>");
winImage.document.write("<BODY background='' BGCOLOR='#000040' LINK='yellow'>");
winImage.document.write("<FONT FACE='Times New Roman' SIZE=-3 COLOR='yellow'>");
winImage.document.write("<CENTER>");
winImage.document.write("<FONT FACE='Times New Roman' SIZE=5> "+ document.title +" </FONT>");
winImage.document.write("<BR><BR>");
winImage.document.write("<TABLE COLS=1 BORDER=2 WIDTH=1 HEIGHT=1>");
winImage.document.write("<TR><TD>");
winImage.document.write("<IMG SRC='" + image + "'>");
winImage.document.write("</TD></TR></TABLE>");
document.linkColor="#FF0000"
winImage.document.write("<A HREF='JavaScript: onClick=window.close();'><P><b>| Fermer |</b></P></A>");

winImage.document.write("</CENTER>");
winImage.document.write("</FONT>");
winImage.document.write("</BODY>");
}




