	//list of testimonials.
	var testtxt = new Array();
	var testname = new Array();
	testtxt[0] = "Your time and help made my trip much more pleasant.  You made getting a wheelchair real easy.  I’m a gal on the move!  Thanks";
	testname[0] = "Carol Leonard";
	testtxt[1] = "I want to thank you for the quick response you provided for my mother.  Your quality of service exceeds any of my expectations.  Keep up the good work!";
	testname[1] = "Valerie Laubacher<BR />Houston TX";
	testtxt[2] = "Thank you for your help yesterday!  Mom was very relieved to receive her new, sturdy “chariot”.  You provide very valuable services to people like me.  Thanks for being there.";
	testname[2] = "Becky Gerard";
	testtxt[3] = "Just a very sincere “Thank you”.  I am grateful for you help.  I use my scooter to go to the mall 3 times a week.  I am in the ministry and try to help people I meet at the mall.  May God bless you!";
	testname[3] = "William Walton";
	testtxt[4] = "I would sincerely like to thank you for the wonderful service you provided.  Your penchant for detail is obvious.  Thank you and your attentive staff for the first-rate, commendable, healthcare services you provided.";
	testname[4] = "Margaret Smith";
	testtxt[5] = "I chose Brunner Healthcare because they have stellar service and over 20 years of experience.  Brunners orders are clearly itemized and complete.  They are able to provide me with products and services their competitors can’t even get close to.";
	testname[5] = "Elizabeth Smith";
	testtxt[6] = "It isn’t very often in today’s society that dealing with the businesses of today is a very pleasant experience.  We’ve experienced it time and time again.  Brunner Healthcare is NOT one of those businesses!  You gave us a feeling of trust and an honest job well done.  It was, perhaps, nothing but the standard for your employees, but that standard is, seemingly, more and more a rarity in the business society of today.<BR />Congratulations on running an excellent service.";
	testname[6] = "Howard & Norene Hedderman<BR />Willoughby, OH";
	testtxt[7] = "I wish to personally thank your staff for their quick response to our call for assistance.  They were very polite to us during a period of great stress for us.  Thank you again for your great service.";
	testname[7] = "Don Friedland";
	testtxt[8] = "Thank you for your great service and products.  This chair is the best fitting and most comfortable chair he has ever owned.  It’s really “part of him”.  Your measurements of the chair were perfect.  Thank you again for everything.";
	testname[8] = "Kate Bush – Charlie’s mom";
	testtxt[9] = "Thanks again for all your help.  Your company is great!";
	testname[9] = "Donna";
	var testcount = 9;
	var currtest = 0;
	function rtmnl()
	{
	
		if (currtest < 9)
		{
			currtest += 1;
		}
		else
		{
			currtest = 0;
		}
		
		if (document.getElementById('') )
		{
			var telemt = document.getElementById('testimont');
			var telemn = document.getElementById('testimonn'); 
		}
		else
		{
			var telemt = document.all.testimont;
			var telemn = document.all.testimonn;
		}
		telemt.innerHTML = testtxt[currtest];
		telemn.innerHTML = testname[currtest];
		setTimeout('rtmnl()',10000);
	}