function lista(){
maximo=lista.arguments.length;
for (i=0; i<maximo; i++)
	this[i]=lista.arguments[i];
}
tl=new lista
(
"*** Wellcome to the REIVAJ Web Pages ***",
"Here you can find technical information",
"about our Models, Machines, Services",
"Thank you for visit our company.",
"*** Bienvenidos a la Web de REIVAJ S.A.***",
"Aquí puede consultar información técnica,",
"de todos nuestros productos:    ",
"Modelos, Máquinas y los Servicios que ofrecemos.",
"Gracias por visitar nuestra compañía."
);
var pos=0;
var x=0;
var inter=tl[x].length;
function mensajes(){
document.general.cuadro.value=tl[x].substring(0,pos)+"_";
if(pos++==inter){
pos=0;
setTimeout("mensajes()",1000);
x++;
if(x==maximo)
x=0;
inter=tl[x].length;
} else
setTimeout("mensajes()",50);
}
