
	/* FUNCION PARA MAXIMIZAR LA PANTALLA */

function PantallaMaximizada()
{
	window.resizeTo(screen.availWidth, screen.availHeight);
	window.moveTo(0,0);
}

	/* FUNCION PARA ESCRIBIR EL TEXTO EN LA BARRA DE ESTADO */

function textoEstado()
{

	pos = pos + 1
	textoActual = texto.substring(0,pos)

	window.status = textoActual + "  •";

	if (pos == texto.length)
	{
		pos = 0
		setTimeout("textoEstado()",10000)
	}
	else
	{
		setTimeout("textoEstado()",100)
	}
}

	/* FUNCION PARA ESCRIBIR EL DIA */



