<!--
/*       Adaptado para ElAtrio.Net en Agosto del 2001
                     www.ElAtrio.Net
                     info@elatrio.net
                 ¡colabora con nosotros!
*/

var texto = "<><  ElAtrio.Net    Tu Portal Cristiano  ><>";
var espaciosdelante="                                        ";
var espaciosdetras="                                        ";
var mensaje1=espaciosdelante+texto+espaciosdetras;
var direccion = "izq";
var velocidad = 150;

function pendulo() {

		if (direccion == "izq") {
			mensaje2=mensaje1.substring(2,mensaje1.length)+"  ";
			window.status=mensaje2;
			setTimeout("pendulo();",velocidad);
			mensaje1=mensaje2;
			if (mensaje1.substring(0,1) == "<") {
				direccion="der";
			}
		}
		else {
			mensaje2="  "+mensaje1.substring(0,mensaje1.length-2);
			window.status=mensaje2;
			setTimeout("pendulo();",velocidad);
			mensaje1=mensaje2;
			if (mensaje1.substring(mensaje1.length-1, mensaje1.length) == ">") { 
				direccion="izq";
			}
		}
}
// -->