
var currentdate = 0;
var core = 0;

function initArray() {

this.length = initArray.arguments.length;
  for (var i = 0; i < this.length; i++) {
  this[i] = initArray.arguments[i];
  }
}


function Affiche_Pub() {
  
r = Math.round(Math.random()*100);

link = new initArray(
"http://www.franceway.com/",
"http://www.france-hotel-online.com",
"http://kansas.valueclick.com/redirect?host=hs0137213&b=" +r+"&v=0",
"http://kansas.valueclick.com/redirect?host=hs0137213&b=" +r+"&v=0"
);

image = new initArray(
"http://www.franceway.com/anim/anim.gif",
"http://www.franceway.com/ads/fhol.jpg",
"http://kansas.valueclick.com/cycle?host=hs0137213&b=" +r+ "&noscript=1",
"http://kansas.valueclick.com/cycle?host=hs0137213&b=" +r +"&noscript=1"

);

text = new initArray(
"Find your way in France!",
"Discover France",
"Visit our sponsor!"
);


var currentdate = new Date();
var core = currentdate.getSeconds() % image.length;
var ranlink  = link[core];
var ranimage = image[core];
var rantext  = text[core];
document.write('<center><a href=\"' +ranlink+ '\" target=\"_blank\"><img src=\"'+ranimage+'\"border="0" alt=\"'+rantext+'\"></a></center><br>');
};


