function PopupImage(img)
{
titre="BIGOUDI Shop le professionnel de la coiffure&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;";
w=document.images[0].width*4;
h=document.images[0].height*4;
LeftPosition = (screen.width/4 - w);
TopPosition = (screen.height/4 - h);

	win=open('','image','width=100,height=100,top='+TopPosition+',left='+LeftPosition+',toolbar=no,scrollbars=no,resizable=no');

	win.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE><style>img { border: 10px solid #ff0081 } body,a { color: #2E6354; font-family: Arial; font-size: 11px; font-weight: bold ; text-decoration:none}</style></HEAD>");
	win.document.write("<SCRIPT language=javascript>function checksize()  { if (document.images[0].complete) {  window.resizeTo(document.images[0].width+50,document.images[0].height+100); window.focus();} else { setTimeout('check()',250) } }</"+"SCRIPT>");
	win.document.write("<BODY bgcolor=#C1DFD6 onload='checksize()' leftMargin=10 topMargin=10 marginwidth=10 marginheight=10><IMG src='"+img+"'>");
	win.document.write("<br><center><a href=javascript:window.close()>Fermer la fenêtre</a>");
	win.document.write("</BODY></HTML>");
	win.document.close();
}