/*
Gestion de banniere
*/

banurl      = new Array;
banimageUrl = new Array;
banAlt      = new Array;

banimageUrl[0]  = "images/pub/bann_ps3.jpg";
banurl[0]       = "http://www.nextgen-industry.com/forfait-reparation-ps3-probleme-de-lecture-bloc-optique-p-29.html";
banAlt[0]       = "Nextgen-Industry - Réparation Ps3 - Playstation 3";

banimageUrl[1]  = "images/pub/bann_bops3.jpg";
banurl[1]       = "http://www.nextgen-industry.com/playstation-pieces-detachees-c-22_37.html";
banAlt[1]       = "Nextgen-Industry - Bloc optique Ps3 - Ps3";

banimageUrl[2]  = "images/pub/bann_bops3s.jpg";
banurl[2]       = "http://www.nextgen-industry.com/bloc-optique-ps3-slim-sony-kes450a-p-463.html";
banAlt[2]       = "Nextgen-Industry - Bloc optique Ps3 Slim - Ps3";
affiche = false;

function AffichePub()
   {
   if(!affiche)
      {
      numimage= Math.round(Math.random()*(banurl.length-1));
      document.write ('<img onClick="window.open(banurl[numimage],\'_self\')" style="cursor:hand;pointer:hand;" src="' + banimageUrl[numimage] + '" border="0" name="banpub" alt="' + banAlt[numimage] + '" title="' + banAlt[numimage] + '">')
      affiche = true;
      }
   else
      {
      if(numimage == (banurl.length-1))
         numimage = 0;
      else
         numimage++;
      document.banpub.src=banimageUrl[numimage];
      }
   setTimeout("AffichePub()",5000);
   }

AffichePub();
