// Courtesy of SimplytheBest.net (http://simplythebest.net/info/dhtml_scripts.html)
var marqueewidth=150
var marqueeheight=400
var speed=3
//Specify the marquee contents
var marqueecontents="<FONT SIZE=2 Face='Arial Black'>";
marqueecontents +="<a href='http://www.telmex.com' target=_blank>Telmex<br><img border=0 src=telmex.gif></a><br><br><br>";
marqueecontents +="<img border=0 src=imagenes/binario.jpg><br>";
marqueecontents +="<img border=0 src=imagenes/ipod.jpg><br>";
marqueecontents +="<img border=0 src=imagenes/xbox.jpg><br>";

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
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
// -->
