	function scrollit(seed) {

		var msg = "Welcome to www.BrowsingGuide.com - View Your Favourites in the Frontpage - Register Free - Dont Type Just Click";
		var out = " ";
		var c = 1;
		
		if (seed > 100) {
			seed--;
			cmd="scrollit("+seed+")";
			timerTwo=window.setTimeout(cmd,100);
		}
		else if (seed <= 100 && seed > 0) {
			for (c=0 ; c < seed ; c++) {
				out+=" ";
			}
			out+=msg;
			seed--;
			window.status=out;
			cmd="scrollit("+seed+")";
			timerTwo=window.setTimeout(cmd,100);
		}
		else if (seed <= 0) {
			if (-seed < msg.length) {
				out+=msg.substring(-seed,msg.length);
				seed--;
				window.status=out;
				cmd="scrollit("+seed+")";
				timerTwo=window.setTimeout(cmd,100);
			}
			else {
				window.status=" ";
				timerTwo=window.setTimeout("scrollit(100)",75);
			}
		}
	}
