// JavaScript Document

//texto del mensaje
var texto_estado = "            ::Bienvenidos al CENTRO de REALIDAD VIRTUAL::"
var posicion = 0

//funcion para mover el texto de la barra de estado
function mueve_texto(){
  if (posicion < texto_estado.length) 
	 posicion ++;
  else
	 posicion = 1;
  string_actual = texto_estado.substring(posicion) + texto_estado.substring(0,posicion);
  window.status = string_actual;
  setTimeout("mueve_texto()",100);
}
mueve_texto();

