// ancho
var marqueewidth=240
// alto
var marqueeheight=60
// velocidad
var speed=1

// esta es la parte del texto que se despliega en la parte de anuncios
// Puede utilizar los siguientes comando para dar formato al texto, usar los signos <> como se indica
// Para indicar que cambie de renglon usar esta instruccion <br>
// Para especificar el tipo y tamaņo de letra <font face="tipo de letra" size="1,2,o 3"> el texto que quiero escribir </font>
// Para poner un enlace <a href="http://www.la pagina a la que quiero enlazar.com" target="_blank">El texto que se vera en el enlace</a>
// Para presentar un texto en negritas <strong> texto que quiero en negrita </strong>
// Texto en cursiva <em> el texto que quiero en cursiva </em>
var marqueecontents='<font face="Arial" size="2">LINEA DE RESERVACIONES SIN COSTO, <br /><font face="Arial" size="3" color="#330099"> 01 800 830 9592 DESDE MEXICO Y <br /> 1 888 502 2761, U.S.A. </font> <br /> ABIERTA TODOS LOS DIAS <br /> INCLUYENDO LOS DOMINGOS DE 9 AM A 5 PM, <br />YA ESTA!!!, <strong>  PLAYA BLANCA CONDOMINIOS </strong>, EN PLAYA ALGODONES, MAXIMO LUJO, HERMOSAS VISTAS<br>RESERVE CON TIEMPO EL HOSPEDAJE PARA SUS VACACIONES DE FIN DE AŅO, NAVIDAD SIN FRIO!!! EN SAN CARLOS </font>'
//hasta aqui se puede modificar

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",240)
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