// JavaScript Document
function popup(chemin)
	{
	var winl = 0;
	var wint = 0;
	//var winl = (screen.width) / 2;
    //var wint = (screen.height) / 2;
	i1 = new Image;
	i1.src = chemin;
	html = '<HTML><HEAD><TITLE>Image</TITLE></HEAD><BODY LEFTMARGIN=0 MARGINWIDTH=0 TOPMARGIN=0 MARGINHEIGHT=0><CENTER><a href=javascript:window.close();><IMG SRC="'+chemin+'" BORDER=0 NAME=imageTest onLoad="window.resizeTo(document.imageTest.width,document.imageTest.height)"></a></CENTER></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0, top='+wint+',left='+winl+'');
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()
};