/*
Script para generar una marquesina simple de derecha a izquierda
*/


// Ancho de la marquesina
var marqueewidth=550;
// Alto de la marquesina
var marqueeheight=20;
// Velocidad del texto
var speed=5;
// Mensaje que aparecerá en la marquesina
var marqueecontents='<font face="Verdana" size="2">NUEVO PORTAL <B>TIENDASPAVO.COM</B>, OFERTAS EXCLUSIVAS, NOVEDADES, TIENDA ONLINE, COMENTARIOS DE PRODUCTOS, ENVÍA TUS OPINIONES, AHORA DESDE CASA CONSULTA TODO DE TODO EN <B>TIENDASPAVO.COM</B>, <B>NO LOS ENCONTRARÁS A MEJOR PRECIO</B>, Y SIEMPRE A TU SERVICIO.</font>';


if (document.all)
document.write('<marquee scrollAmount='+speed+' style="width:'+marqueewidth+'">'+marqueecontents+'</marquee>');

function regenerate(){
window.location.reload();
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450);
intializemarquee();
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write('<nobr>'+marqueecontents+'</nobr>');
document.cmarquee01.document.cmarquee02.document.close();
thelength=document.cmarquee01.document.cmarquee02.document.width;
scrollit();
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.left>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.left-=speed;
setTimeout("scrollit()",100);
}
else{
document.cmarquee01.document.cmarquee02.left=marqueewidth;
scrollit();
}
}

window.onload=regenerate2;

