//Fonction pop-up images
function _popupWindow(ime, x, y){
	eval("_popup=window.open('','_blank','toolbar=no,screenX=150,screenY=30,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width="+ x +",height="+ y +"')");
	_popup.document.write("<html><body topmargin=0 leftmargin=0 marginwidth=0 marginheight=0><a href='javascript:window.close();' title='Cliquez pour fermer la fenêtre'><img src='"+ime+"'  border='0' width='"+ x +"' height='"+ y+"'></a></body></html>");
	_popup.document.close();
}
