		function Ticker_Rec(Ticker_Name,Ticker_Text,Ordinate,Threshold) {
			this.Start_X = (arguments.length > 5) ? arguments[5] : screen.availWidth;
			this.Start_Y = Ordinate;
			this.Text_Line = Ticker_Text;
			this.Ticker_ID = Ticker_Name;
			this.Scroll_X = this.Start_X;
			this.Scroll_Y = this.Start_Y;
			this.Left_Threshold = Threshold;
			this.Increment = (arguments.length > 4) ? arguments[4] : 1;
			this.Interval = null;
		}
	
		Ticker_Rec.prototype.Reset_Ticker = function () {		// Optional parameter: Ticker_Text
			if (arguments.length > 0)
				this.Text_Line = arguments[0];
			this.Scroll_X = this.Start_X;
			this.Scroll_Y = this.Start_Y;
			document.getElementById(this.Ticker_ID).style.left = this.Start_X;
			document.getElementById(this.Ticker_ID).style.top = this.Start_Y;
			document.getElementById(this.Ticker_ID).innerHTML = this.Text_Line;
			document.getElementById(this.Ticker_ID).style.visibility = "visible";
		}
	
		Ticker_Rec.prototype.R_to_L = function () {
			this.Scroll_X -= this.Increment;
			if (this.Scroll_X < this.Left_Threshold)
				this.Scroll_X = this.Start_X;
			document.getElementById(this.Ticker_ID).style.left = this.Scroll_X;
		}
