function scroll()
{
var txt="Bienvenidos a la página del Campamento Los Cristales "
+ "                     ";

window.status = txt;
txt = txt.substring(1, txt.length) + txt.charAt(0);
window.setTimeout("scroll()",150);
}