url = new Array;
imageUrl=new Array;

// Image 1
url[0] = "chasse.php";
imageUrl[0] = "image/petit_gibier.GIF";

// Image 2
url[1] = "chasse.php";
imageUrl[1] = "image/chasse_orignal.GIF";

//Image 3
url[2] = "chalet.php";
imageUrl[2] = "image/camping_chalet.GIF"

affiche = false;


function AffichePub()
   {   if(!affiche)
      {      numimage= Math.round(Math.random()*(url.length-1));
//     Pas de lien
      document.write ('<IMG SRC="' + imageUrl[numimage] + '" WIDTH=140 BORDER=1 NAME=pub></A>')
	  
/*     Lien 
      document.write ('<A HREF="' + url[numimage] + '"><IMG SRC="' + imageUrl[numimage] + '" WIDTH=140 BORDER=0 NAME=pub></A>')
*/
      affiche = true;
      }   else      {
      if(numimage == (url.length-1))
         numimage = 0;
      else
         numimage++;
      document.pub.src=imageUrl[numimage];
      }   setTimeout("AffichePub()",10000);
   }
AffichePub();
