// Ancho (pixeles)
var marqueewidth=110
// Alto
var marqueeheight=40
// Velocidad (mayor, mas rapido)
var speed=1
// Contenido
var marqueecontents=
'<font face="Arial"><H6>[15-04-2004] Novedad: Diagnóstico del <a href="novedades.htm">virus del desorden amarillo de la judía (BnYDV)</a></H6></font>'+
'<font face="Arial"><H6>[26-05-2004] ¡Nos entrevista<I><a href="entrevista.htm"> La Voz de Almería</a></I>!</H6></font>'+
'<font face="Arial"><H6>Alertas fitosanitarias de la <a href="http://www.eppo.org/QUARANTINE/Alert_List/alert_list.htm">EPPO (European and Mediterranean Plant Protection Organization)<a></H6></font>'+
'<font face="Arial"><H6>Noticias del <a href="http://desaveal.ual.es/sifa/">Servicio de Información Fitosanitaria de Almería</a></H6></font>'

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",250)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}

window.onload=regenerate2

