var msg = "Hello  everyone,  Welcome  to  ICI  homepage, Š½Œ}Ÿà—— ICI –Ô•Å";
var delay = 100;
var pos = 100;
function scroll_status()
{
    setTimeout("scroll_status()", delay);
    var out = "";
    if (pos >= 0) {
	for (c = 0; c < pos; c++) {
	    out += " ";
	}
	out += msg;
    }
    else {
	out = msg.substring(-pos, msg.length);
    }
    pos = (-pos > msg.length) ? 100 : pos - 0.5;
    window.status = out;
}
scroll_status();

