function scrollit_r2l(seed)
{
	var m1 = "Welcome to the Domus Mundi. MOZILLA/NETSCAPE USERS: please note that due to a BUG in your browser the navigation buttons in this site are unable to control the Div mounted Iframe. Please use a current Internet Explorer browser while we search for ways to work around this for our MOZILLA/NETSCAPE using friends.";
        var msg=m1;
	var out = "The Domus Mundi:    ";
	var c   = 1;
	
	var speed1 = 200;

	if (seed > 100) {
		seed--;
		var cmd="scrollit_r2l(" + seed + ")";
		window.setTimeout(cmd,speed1 );
	}
	
	else if (seed <= 100 && seed > 0) {
		for (c=0 ; c < seed ; c++) {
			out+=" ";
		}
		out+=msg;
		seed--;
		var cmd="scrollit_r2l(" + seed + ")";
			window.status=out;
		window.setTimeout(cmd,speed1 );
	}
	else if (seed <= 0) {
		if (-seed < msg.length) {
			out+=msg.substring(-seed,msg.length);
			seed--;
			var cmd="scrollit_r2l(" + seed + ")";
			window.status=out;
			window.setTimeout(cmd,speed1 );
		}
		else {
			window.status=" ";
			window.setTimeout("scrollit_r2l(100)",speed1);
		}
	}
}

