// ancho
var marqueewidth=150
// alto
var marqueeheight=150
// velocidad
var speed=2
// contenido
var marqueecontents='<b>TLALOC´s program has been added in "The Lonely Planet" book info in the Cuernavaca´s section for the Spanish schools.</B><br>CHECK IT OUT!<br><br>We continue offering disccounts of 2 for 1 and also for every group of 4 participants the 5th one gets everything for free! (except for the lodging and meals)'

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*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}

window.onload=regenerate2