<!-- Mensaje en Barra de Titulo -->
var txt="                  - HORTICULTURA LOZANO -";
var y = 0
function RotuloTitulo()
{
var espera=150;
var refresco=null;
	document.title=txt;
	txt=txt.substring(1,txt.length)+txt.charAt(0);      
	refresco=setTimeout("RotuloTitulo()",espera);
}
RotuloTitulo();

<!-- Mensaje en Barra de Estado -->
var NumLinea = 0
var x = 0
var Velocidad = 75
var Velocidad2 = 2500

function InicializaArray(n)
{
	this.length = n;
	for (var i =1; i <= n; i++)
	{
		this[i] = ' '
	}
}

function MensajeBarraEstado()
{
	Linea = new InicializaArray(3);
	Linea[0]="* Bienvenido a HORTICULTURALOZANO.COM ";
	Linea[1]="* Póngase en contacto con nosotros por E-Mail: info@horticulturalozano.es ";
	var  Mensaje = Linea[NumLinea];
	window.status = Mensaje.substring(0, x++) + "*";
	if (x == Mensaje.length + 1)
	{
		x = 0;
		NumLinea++;
		if (NumLinea > Linea.length - 1)
		{
			NumLinea = 0;
		}
		setTimeout("MensajeBarraEstado()", Velocidad2);
	}
	else
		{
			setTimeout("MensajeBarraEstado()", Velocidad);
		}
}
MensajeBarraEstado();