  <!-- Hide this from older browsers
  // This script was written by Protoplasm
  // http://www.geocities.com/protoplasm72 


// The Central Randomizer 1.3 (C) 1997 by Paul Houle (houle@msc.cornell.edu)
// See:  http://www.msc.cornell.edu/~houle/JavaScript/randomizer.html

rnd.today=new Date();
rnd.seed=rnd.today.getTime();

function rnd() {
	rnd.seed = (rnd.seed*9301+49297) % 233280;
	return rnd.seed/(233280.0);
}

function rand(number) {
	return Math.ceil(rnd()*number);
}

// end central randomizer. -->
var n=rand(34);

var message = new Array ();
var Speed = 100;
var Count = 0;
var currMessage = n;
var i = 0;

message[1] = "Pat Abbott—”Thanks so much. I love this method of getting the courses I needed. So convenient.”";
message[2] = "Licensed in more than one State?? Call us about dual certificates.";
message[3] = "Guy Robbins III—”I will take more of these from you.”";
message[4] = "Norma Jeanne, Kenmore, WA—”Great to be able to sit down in free time at home to study.”";
message[5] = "Patricia Smith—”It is much more convenient since I must drive a minimum of 65 miles for continuing education.”";
message[6] = "Let us help you get certified today";
message[7] = "Dennis McChesney—How do you feel about this course now? “Great—I feel that this method creates a greater learning environment than a classroom.”";
message[8] = "Deborah Wise ”Just took the test and passed it, was easy.  In and out in just 1 hour 15 mins.  Thank you.”";
message[9] = "Susan, Billings, MT—”extremely impressed with content, structure and learning experience.”";
message[10] = "James, Montgomery, AL—”Uncertain as to what to expect. Very pleased with course content and presentation of material.”";
message[11] = "Real Estate Education the Convenient way";
message[12] = "Cynthia, Fish Tail, MT—”Very pleased. Easy to use. Engaging and informative.”";
message[13] = "Dawni, Remax Agent—”I had received numerous advertisements from continuing educations companies and I'm so pleased that I chose you!”";
message[14] = "Windy, Bozeman, MT—”I learned probably more than any continuing education classes that I’ve taken.”";
message[15] = "Todd, Kalispell, MT—”Great format and presentation.”";
message[16] = "Brian, Big Fork, MT—”Very happy with course. Great learning experience and able to fit into my schedule.”";
message[17] = "Real Estate Education made easy.";
message[18] = "Kathie, Corum, MT—I liked the courses being offered, the convenience of taking the course in office is a plus.”";
message[19] = "Judy, Kihei, HI—”I learned more taking the courses this way.”";
message[20] = "Linda, Billings, MT—”I would rather take this class than sit through a seminar.”";
message[21] = "John, Whitefish, MT—”Excellent, very informative and displayed well.”";
message[22] = "Cameron, Omaha, NE—”loved it, would recommend it to others.”";
message[23] = "Carol, Hamilton, MT—”Excited — comfortable — felt I learned a good deal.”";
message[24] = "Work from the convenience of your own home.";
message[25] = "Robert, Great Falls, MT—”Looking forward to the next one.”";
message[26] = "Lauriann, Big Timber, MT—”...impressed with the ease of use and availability!”";
message[27] = "Dan, Gig Harbor, WA—”It’s GREAT! Got much more out of computer class than classroom. Love it—do it my own speed in my home office—perfect.”";
message[28] = "Jeanne, Spanaway, WA—”Very glad I took it, very student friendly. It was extremely convenient because of my time constraints, it allowed me to work at my convenience.”";
message[29] = "Lark, Concrete, WA—”...glad I did it—needed everything (the) course taught and then some.”";
message[30] = "Peter, Seattle, WA—”...best method for continuing education.”";
message[31] = "Sylvia, Baton Rouge, LA—”I will always take my continuing education this way!”";
message[32] = "Joshua, Honolulu, HI—”Great support staff in getting started and getting it all done!”";
message[33] = "Lauriann, Big Timber, MT—”...impressed with the ease of use and availability!”";
message[34] = "Continuing Education from the convenience of your home computer.";
message[35] = "Kathy, Port Angeles, WA—”Was expecting boredom...I will do this again. Susan & staff get an A+ from me!”";
message[36] = "Dawnin, Remax Agent—”...I am really pleased with your company and the service you provide, I won't hesitate to use you again and have already recommended you to other agents!”";


for (i = 1; i < message.length; i++) {
	while (message[i].length < 150)
	message[i] = " " + message[i];
}


function Scroll() {
	var Text = message[currMessage];
	window.status = Text.substring(Count++, Text.length);
	if (Count == Text.length) {
		Count = 0;
		currMessage ++;
	}
	currMessage = (currMessage >= message.length ? 1 : currMessage);
	setTimeout("Scroll()", Speed);
} 

Scroll(); 

// end hide -->
