function PopUp(url)
{
	var chemin = url;
	var left = chemin.substring(0,chemin.lastIndexOf('.'));
	var right = chemin.substring(chemin.lastIndexOf('.'));
	var h = 50;
	var w = 50;
	var html ='<html><head><title>GTB</title></head><body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginwidth="0" marginheight="0"><img onclick="window.close();" name="image" src="' + chemin + '" onLoad="window.resizeTo(document.image.width,document.image.height+50)" alt=""></body></html>';

	var top = (screen.height - 250) / 2;
	var left = (screen.width - 250) / 2;

	var p = 'top=' + top + ', left=' + left + ', width='+(parseInt(w))+', height='+(parseInt(h))+', menubar=no, scrollbars=no, resizable=no, statusbar=no';
	
	popupImage = window.open('','popup_', p);
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close();
	popupImage.focus();
};
	

