<!-- Hide this script from old browsers --

function create() {
this.width = ''
this.height = ''
this.src = ''
this.href = ''
this.border = ''
this.mouseover = ''
}


function random(n)  {
var js_mult1=3141
var js_mult2=5821
var js_m1=100000000
var js_m2=10000
var js_iseed=0
var js_iseed1=0
var js_iseed2=0

if (js_iseed == 0)  {
now = new Date()
js_iseed = now.getHours() + now.getMinutes() * 60 + now.getSeconds() * 3600
}

js_iseed1 = js_iseed / js_m2
js_iseed2 = js_iseed % js_m2
var tmp = (((js_iseed2 * js_mult1 + js_iseed1 * js_mult2) % js_m2) * js_m2 + (js_iseed2 *
js_mult2)) % js_m1
js_iseed = (tmp + 1) % js_m1
return (Math.floor((js_iseed/js_m1) * n))
}

var numberOfAds = 12     //number or ads you want to display

ads = new Array()
for(var i=1; i<=numberOfAds; i++) { ads[i] = new create() }

ads[1].width = "116"
ads[1].height = "103"
ads[1].src = "http://racinguistasonline.com/Images/rotador/che.gif"
ads[1].href = "http://racinguistasonline.com/patrocinadores/che.htm"
ads[1].border = "1"
ads[1].mouseover = "Autobuses Che"

ads[2].width = "116"
ads[2].height = "85"
ads[2].src = "http://racinguistasonline.com/Images/rotador/emiplas.gif"
ads[2].href = "http://racinguistasonline.com/patrocinadores/emiplas.htm"
ads[2].border = "1"
ads[2].mouseover = "Emiplas decoracion"

ads[3].width = "116"
ads[3].height = "124"
ads[3].src = "http://racinguistasonline.com/Images/rotador/ntcs.gif"
ads[3].href = "http://www.ntcslne.com/"
ads[3].border = "1"
ads[3].mouseover = "NTCS"

ads[4].width = "116"
ads[4].height = "73"
ads[4].src = "http://racinguistasonline.com/Images/rotador/andaraviajes.gif"
ads[4].href = "http://www.andaraviajes.com/"
ads[4].border = "1"
ads[4].mouseover = "Andara Viajes"

ads[5].width = "116"
ads[5].height = "93"
ads[5].src = "http://racinguistasonline.com/Images/rotador/dynos.gif"
ads[5].href = "http://www.dynos.es/"
ads[5].border = "1"
ads[5].mouseover = "Dynos informática"

ads[6].width = "116"
ads[6].height = "75"
ads[6].src = "http://racinguistasonline.com/Images/rotador/zarzos.gif"
ads[6].href = "http://cesteriazarzos.com/"
ads[6].border = "1"
ads[6].mouseover = "Cestería Zarzos"

ads[7].width = "116"
ads[7].height = "67"
ads[7].src = "http://racinguistasonline.com/Images/rotador/ibexbolsa.gif"
ads[7].href = "http://www.ibexbolsa.com/"
ads[7].border = "1"
ads[7].mouseover = "Ibexbolsa"

ads[8].width = "116"
ads[8].height = "125"
ads[8].src = "http://racinguistasonline.com/Images/rotador/sport_moto.gif"
ads[8].href = "http://racinguistasonline.com/patrocinadores/sportmotoventana.htm"
ads[8].border = "1"
ads[8].mouseover = "Sport Moto"

ads[9].width = "116"
ads[9].height = "102"
ads[9].src = "http://racinguistasonline.com/Images/rotador/cantabrisa.gif"
ads[9].href = "http://www.cantabrisa.com/"
ads[9].border = "1"
ads[9].mouseover = "Eventos y espectacúlos Cantabrisa"

ads[10].width = "116"
ads[10].height = "70"
ads[10].src = "http://racinguistasonline.com/Images/rotador/gambitayjamon.gif"
ads[10].href = "http://racinguistasonline.com/patrocinadores/gambitayjamon.htm"
ads[10].border = "1"
ads[10].mouseover = "Gambita y Jamón"

ads[11].width = "116"
ads[11].height = "153"
ads[11].src = "http://racinguistasonline.com/Images/rotador/centro_asturiano2.gif"
ads[11].href = "http://www.centroasturianoencantabria.com/"
ads[11].border = "1"
ads[11].mouseover = "Centro Asturiano en Cantabria"



var n = random(numberOfAds)
n = (n==0) ? n+1 : n
n = (n > numberOfAds) ? n-numberOfAds : n

var image = ads[n]
var ad = ""
ad += '<a target="_blank" href="' + image.href + '" \n'
ad += 'onMouseOver="self.status=\'' + image.mouseover + '\'\;return true" \n'
ad += 'onMouseOut="self.status=\'\'"> \n'
ad += '<img src="' + image.src + '" width=' + image.width
ad += '\n height=' + image.height + ' border=' + image.border
ad += '\n></a>'
// -- End Hiding Here -->