
<!-- Beginning of JavaScript Applet ------------------------
/*
   Copyright (C) 1996 Web Integration Systems, Inc.  DBA Websys, Inc.
   All Rights Reserved.
   This applet can be re-used or modified, if credit is given in the source
   code.
   We will not be held responsible for any unwanted effects due to the
   usage of this applet or any derivative.  No warrantees for usability
   for any specific application are given or implied.
   Chris Skinner, January 30th, 1996.
   Hacked for ItalWeb by Elizabeth Spencer-Comoy, Feb 9th, 1996.
*/

/*
   The following has been modified from the source code provided by the above organization.
   The same rule and disclaimer if you want to use or revise the following code.
 */

// var msg="Registraion for Children's Buddhism Classes is underway; click the above links to enroll ...";
// var msg="Namo Amituofo...Namo Amituofo...Namo Amituofo...Namo Amituofo...Namo Amituofo.....";

var msg="It's time to review 2009 tax law changes and make an appointment with us...";

function scrollit_r21(seed)
{
	var c=0;
	var out=" ";
	var next_time_out=100;

	if (seed > 100) {
		out=" ";
		seed--;
		next_time_out=100;
	}
	else if (seed <= 100 && seed > 0) {
		for (c=0 ; c < seed ; c++) {
			out+=" ";
		}
		out+=msg;
		seed--;
		next_time_out=50;
	}
	else if (seed <= 0) {
		if (-seed < msg.length) {
			out+=msg.substring(-seed,msg.length);
			seed--;
			next_time_out=125;
		}
		else{
			out=" ";
			seed=100;
			next_time_out=200;
		}
	}
	window.status=out;
	var cmd="scrollit_r21(" + seed + ")";
	timerTwo=window.setTimeout(cmd,next_time_out);
}

// -- End of JavaScript scrollit code ----------------------------->
