// JavaScript Document
function seeMeBig(way)
{
html = '<html><head><title>image</title></head><body onblur="window.focus()" style="margin:0px;background-color:#ffffff;"><center><img src="'+way+'" border=0 name=mypict onclick="window.close();" style="cursor:pointer" title="Cliquer pour fermer" alt="Cliquer pour fermer" onload="window.resizeTo(document.mypict.width+14,document.mypict.height+55)"></center></body></html>';
popupImage = window.open('','pop','toolbar=0,width=400,height=300,top=200,left=200,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0');
popupImage.document.open();
popupImage.document.write(html);
popupImage.document.close()
};