
function PopupImage(img,text) { 
titre="Agrandissement"; 
w=open("",'image','width=500,height=485,toolbar=no,scrollbars=no,resizable=no'); 
w.document.write("<HTML><HEAD><link href='../ressources/stylesheetPopup.css' rel='stylesheet' type='text/css'><TITLE>Thiriez Literie</TITLE></HEAD>"); 
w.document.write("<BODY onblur='window.close()' onclick='window.close()' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0>");
w.document.write("<TABLE width='100%' border='0' cellspacing='0' cellpadding='0' height='100%'><TR>");
w.document.write("<TD valign='middle' align='center'><IMG src='"+img+"' border=0 alt='"+text+"'></TD></TR>");
w.document.write("<TR><TD><IMG src='../images/spacer.gif' alt='' width='1' height='20'></TD></TR>");
w.document.write("<TR><TD align='center' class='titreImages'>");
w.document.write(text);
w.document.write("</TD></TR>");
w.document.write("</TABLE>");
w.document.write("</BODY></HTML>"); 
w.document.close(); 
} 
