function affiche_image(nom,taille_x,taille_y) {
nom_bis = "images/" + nom + ".jpg"
 if (taille_x == 0)
     {taille_x = '790';
	 taille_y = '595';}

largeur = taille_x;
hauteur = taille_y;
 gauche = 0;
 haut = 0;
 le_titre = '';
 couleur_fond = '#000000';
 
 	taFen = window.open("","newWindow","width="+largeur+",height="+hauteur+",left="+gauche+",top="+haut);
	taFen.document.open();
	taFen.document.write('<html><title>'+le_titre+'</title><body leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" bgcolor='+couleur_fond+' onBlur="self.close()" onClick="self.close()">');  
	taFen.document.write('<table width='+taille_x+' border="0" cellspacing="0" cellpadding="0" align="center" height='+hauteur+' ><tr><td>');
	taFen.document.write('<img src="'+nom_bis+'" width='+taille_x+' height='+taille_y+' alt="Cliquer pour fermer" >'); 
	taFen.document.write('</td></tr></table></body></html>');
	taFen.document.close();	
}