// JavaScript Documentvar marqueewidth=220 // ancho
var marqueewidth=220 // ancho
var marqueeheight=180 // alto
var speed=2 // velocidad
// contenido
var marqueecontents='<p class="justify">El Salvador in position 33 in the ranking of Commercial Liberty (<a href="news-en.php">See more</a>).</p><p>Businesses seek the reduction of expenses in municipal procedures (<a href="news-en.php">See more</a>).</p><p>Communique of the Upper Counsel Of Public Health (<a href="news-en.php">See more</a>).</p>'
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",400)
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
