<!-- Hide this script from old browsers --


var imagenumber = 3 ;
var randomnumber = Math.random() ;
var rand1 = Math.round( (imagenumber-1) * randomnumber) + 1 ;
images = new Array
links = new Array

images[1] = "http://www.costahotels.it/banner/costahotel.gif"
links[1]  = "http://www.costahotels.it"
images[2] = "http://www.costahotels.it/banner/mirabilandia.gif"
links[2]  = "http://www.mirabilandia.it"
images[3] = "http://www.costahotels.it/banner/bper.gif"
links[3]  = "http://www.bper.it/prodotti/privati/carte/alice/index_costa.htm"



var image = images[rand1]
var link = links[rand1]

document.write('<A HREF="' + link + '"><IMG SRC="' + image + '"border="1"></a>')
// -- End Hiding Here -->





