url = new Array; 
imageUrl=new Array;

url[0] = "http://houle.megaquebec.net";
imageUrl[0] = "images/fleur1.jpg";

url[1] = "http://houle.megaquebec.net";
imageUrl[1] = "images/fleur2.jpg";

url[2] = "http://houle.megaquebec.net";
imageUrl[2] = "images/fleur3.jpg";

url[3] = "http://houle.megaquebec.net";
imageUrl[3] = "images/fleur4.jpg";

url[4] = "http://houle.megaquebec.net";
imageUrl[4] = "images/fleur5.jpg";

url[5] = "http://houle.megaquebec.net";
imageUrl[5] = "images/fleur6.jpg"

url[4] = "http://houle.megaquebec.net";
imageUrl[4] = "images/cheval.jpg";

url[5] = "http://houle.megaquebec.net";
imageUrl[5] = "images/chat.jpg"

url[5] = "http://houle.megaquebec.net";
imageUrl[5] = "images/chat_haute_qual.jpg"


affiche = false;
function AffichePub()
{
if(!affiche)
{
numimage=Math.round(Math.random()*(url.length-1));
document.write ('<A HREF="#" onClick="window.open(url[numimage],\'_blank\')"><IMG SRC="' + imageUrl[numimage] + '" WIDTH=110 HEIGHT=82 BORDER=2 NAME=pub></A>') 
affiche = true;
}
else
{
if(numimage == (url.length-1))
numimage =0;
else
numimage++;
document.pub.src=imageUrl[numimage];


}
setTimeout("AffichePub()",1299);
}
AffichePub();


