var flag = false;
function showimg(img)
{
	offset = navigator.userAgent.indexOf("MSIE") > -1 ? 84 : 108;
	if (flag == true)
		winImage.close();
	html = '<html><head><title>'+img.name+'</title><meta http-equiv="Pragma" content="no-cache"></head><body leftmargin=0 marginwidth=0 topmargin=0 marginheigth=0 oncontextmenu="return false"><center><a href="#" onClick="window.close()"><img src="'+img.src+'" border=0 name="monImage" title="Cliquer sur l\'image pour fermer la fenêtre" border="0" onLoad="window.resizeTo(this.width+16,this.height+'+offset+');window.moveTo((screen.width-this.width)/2,(screen.height-this.height)/2);"></a></center></body></html>';
	winImage = window.open('','_blank','toolbar=0,location=0,menuBar=0,scrollbars=0,resizable=0');
	winImage.document.write(html);
	flag = true;
}
