/*
Gestion de banniere
*/

banurl      = new Array;
banimageUrl = new Array;
banAlt      = new Array;

banimageUrl[0]  = "http://pub.assentek.com/images/gx-home/1004/ASSENTEK-USBLOADER.jpg";
banimageUrl[1]  = "http://pub.assentek.com/images/gx-home/1004/E3FLASHER.jpg";
banimageUrl[2]  = "http://pub.assentek.com/images/gx-home/1004/ASSENTEK-PERSO.jpg";
banimageUrl[3]  = "http://pub.assentek.com/images/gx-home/1004/xbox360slim.jpg";
banimageUrl[4]  = "http://pub.assentek.com/images/gx-home/1004/ASSENTEK-LIZARD.jpg";
banimageUrl[5]  = "http://pub.assentek.com/images/gx-home/1004/ps3occasion.jpg";
banimageUrl[6]  = "http://pub.assentek.com/images/gx-home/1004/ASSENTEK-X360KEY.jpg";
banimageUrl[7]  = "http://pub.assentek.com/images/gx-home/1004/x360usbpro.jpg";
banimageUrl[8]  = "http://pub.assentek.com/images/gx-home/1004/ASSENTEK-OCCAS.jpg";
banimageUrl[9]  = "http://pub.assentek.com/images/gx-home/1004/x360key.jpg";
banimageUrl[10]  = "http://pub.assentek.com/images/gx-home/1004/apple-3gs.jpg";
banimageUrl[11]  = "http://pub.assentek.com/images/gx-home/1004/raptorfire.jpg";


banurl[0]       = "http://www.assentek.com/search.php?orderby=position&orderway=desc&search_query=usb+loader";
banurl[1]       = "http://www.foxchip.com/4397-e3-flasher-limited-version.html";
banurl[2]       = "http://www.assentek.com/30103157-figurines";
banurl[3]       = "http://www.foxchip.com/installations-xbox-360/3310-flash-dvd-xbox360-slim.html";
banurl[4]       = "http://assentek.com/puces-et-accessoires-de-flash/3470-maximus-lizard.html";
banurl[5]       = "http://www.foxchip.com/search.php?orderby=position&orderway=desc&search_query=console+ps3+occasion";
banurl[6]       = "http://www.assentek.com/puces-et-accessoires-de-flash/3587-x360key.html";
banurl[7]       = "http://www.foxchip.com/puces-et-accessoires-de-flash/3427-xecuter-x360usb-pro.html";
banurl[8]       = "http://www.assentek.com/search.php?orderby=position&orderway=desc&search_query=occasion";
banurl[9]       = "http://www.foxchip.com/puces-et-accessoires-de-flash/3587-x360key.html";
banurl[10]       = "http://www.foxchip.com/30103030-reparations-iphone-3gs";
banurl[11]       = "http://www.foxchip.com/modification-tuning-manette-xbox-360/5158-puce-raptor-fire-xbox-360-sticks-lumineux.html";


affiche = false;

function AffichePub()
   {
   if(!affiche)
      {
      numimage= Math.round(Math.random()*(banurl.length-1));
      document.write ('<A HREF="#" onClick="window.open(banurl[numimage],\'_blank\')"><IMG SRC="' + banimageUrl[numimage] + '" BORDER=0 NAME=banpub ALT="' + banAlt[numimage] + '"></A>')
      affiche = true;
      }
   else
      {
      if(numimage == (banurl.length-1))
         numimage = 0;
      else
         numimage++;
      document.banpub.src=banimageUrl[numimage];
      }
   setTimeout("AffichePub()",5000);
   }

AffichePub();
