// ancho
var marqueewidth=200
// alto
var marqueeheight=100
// velocidad
var speed=1
// contenido del scroll
var marqueecontents='<center><font face="Arial" size="2" color="#00883a">* Dólar Ventanilla<br> Compra: 13.75 <br> Venta:14.2<br><br>* Tasas de Interés<br>CETES 28 días 7.44 %<br>TIIE 28 días 8.1368 %<br>UDIS: 4.2078<br><br>*Mercados Accionarios<br>IPC 19,348.811 pts<br>Dow Jones 9,148.83 pts<br><br> Fuente: BANORTE</font></center>'
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",100)
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*(-9)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}
window.onload=regenerate2
