// JavaScript Document
function PopupImage(val) {
	titre="Zoom";
	w=open('','zoom','width=100,height=100,toolbar=no,scrollbars=no,resizable=yes');	
	w.document.write("<HTML><HEAD><TITLE>"+titre+"</TITLE>");
	w.document.write("<script language='javascript'> function resizeMe() { if (navigator.appName == 'Netscape') { adjWidth = document.images[0].width; adjHeight = document.images[0].height;}else{ adjWidth = document.images[0].width+13; adjHeight = document.images[0].height+32;} self.resizeTo(adjWidth, adjHeight);}");
	w.document.write("</script></HEAD>");	
	w.document.write("<BODY onload='resizeMe();window.focus();' leftMargin=0 topMargin=0 marginwidth=0 marginheight=0><a href=javascript:self.close();><IMG src='"+val+"' alt=Clickez&nbsp;pour&nbsp;fermer border=0></a></BODY></HTML>");
	w.document.close();
}

var artiste = new Array();
artiste[0] = "";
artiste[1] = "Broquet";
artiste[2] = "Petit";
artiste[3] = "Massaro";
artiste[4] = "Boaretto";
artiste[5] = "Cecile";
artiste[6] = "Daraspe";
artiste[7] = "Lorenzi";
artiste[8] = "Tisserand";
artiste[9] = "Bel";
artiste[10] = "Bonnet";
artiste[11] = "Girel";
artiste[12] = "Hurlin";
artiste[13] = "Migeon";
artiste[14] = "Stiefel";
artiste[15] = "Gaucher";
artiste[16] = "Leperlier";
artiste[17] = "Thomasset";
artiste[18] = "Vernier";

var i=1;

function diapo()
{

if(i == 19) i =1;
document.toto.src = "images/art"+i+".jpg";
document.toto.alt = artiste[i];
i++;
setTimeout('diapo()',4000);

}