<!--
var msg='welcome'
function f1() {
window.status = msg;
window.setTimeout("f1();", 10);
}
f1();
//-->