function afficheVignette(image,vignette,largeur,hauteur,titre,temps,alt)
	{
	document.write('<A HREF="javascript:afficheMaxi(\''+image+'\','+largeur+','+hauteur+','+temps+',\''+titre+'\')"><IMG SRC="'+vignette+'" HSPACE=0 VSPACE=0 BORDER=0 ALT="'+alt+'"></A>');
	//
	}

function afficheMaxi (image,largeur,hauteur,temps,titre)
	{
	i1 = new Image;
	i1.src = image;
	html = '<HTML><HEAD><TITLE>'+titre+'</TITLE><!-- <LINK TITLE=TEST TYPE=text/CSS rel=stylesheet HREF=style.css> --></HEAD><BODY background="'+image+'" BGCOLOR=#FFFFFF Onload=setTimeout("self.close();",'+temps+')><table height="100%" width="100%" cellpadding="20"><tr align="center" valign="bottom"><td>&nbsp;&nbsp;&nbsp;<a href="javascript:window.close()" style="font-family: comic sans ms,georgia,arial; font-size: 15px; background-color : black; color: white; font-weight:500"></td></tr></table></BODY></HTML>';
	popupImage = window.open('','_blank','toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=0,width='+largeur+',height='+hauteur);
	popupImage.document.open();
	popupImage.document.write(html);
	popupImage.document.close()	
	};