var nw=null;

function voir(image,w,h)
{
closenw();
nw=window.open("","agrandissement","toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,status=0,width="+w+",height="+h+",left=100,top=100");
nw.document.write("<body leftmargin=0 topmargin=0 bgcolor=#FEFDE2 text=#000000><img src='"+image+"' width=100% height=100%></body>");
nw.document.close();
}

function closenw()
{
if(nw!=null) {nw.close();nw=null;}
}
