Lo siento,su navegador no soporta frames.
Pulse
//texto del mensaje
var texto_estado = " Bienvenidos a Daliweb"
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()",50)
}
mueve_texto()