//function HowMany(count) 
//{
	<!-- Begin Quote Rotation Code
	     // Number of alternative images
	var quote = new Array()  // Array to hold filenames for quotes
	var quoted = new Array()  // Array to hold filenames for quoters
	
	quote[0] = "&quot;&hellip;I never had a better or more professional technician. He found problems our contractor missed&hellip;&quot;"
	quoted[0] = "S. Mcenroe<br />Northboro"
	
	quote[1] = "&quot;&hellip;your technician has his heart and soul in his work, excellent service.&quot;"
	quoted[1] = "J. Bachand<br />Douglas"
	
	quote[2] = "&quot;I was impressed by how your technician hustled. Our service was terrific! He explained what he was doing and why. I will be happy to recommend your company. Thank you.&quot;"
	quoted[2] = "The Anderssons<br />Holden"
	
	quote[3] = "&quot;I was very happy with your technician. He listened to me and was very thorough and sprayed appropriately.&quot;"
	quoted[3] = "G. Moss<br />Worcester"
	
	quote[4] = "&quot;Your service technician did an outstanding job, was very knowledgeable and explained everything very well.  I have already recommended your company because I was so happy with your services&hellip;&quot;"
	quoted[4] = "The Morrissettes<br />Worcester"
	
	quote[5] = "&quot;One thing I can say about you and your company &mdash; you're always there for us.  We appreciate you very much!&quot;"
	quoted[5] = "D. Gammon<br />Worcester"
	
	quote[6] = "&quot;Your office staff was very helpful when I thought I had a problem, we appreciate your prompt, excellent service and your fine company, thank you.&quot;"
	quoted[6] = "J. McDonald<br />Southboro"
	
	quote[7] = "&quot;Just wanted to say <b>thank you</b> for taking care of our flea problem last week &mdash; Jess and Matt are <b>great</b> and everything has worked out well.  The fleas are 99.99% gone.&quot;"
	quoted[7] = "J. Teixeira<br />Fall River"
	
	quote[8] = "&quot;I was absolutely thrilled with your service and how the technician explained everything in great detail to my wife.  I have used you in the past and will continue to use your company forever.&quot;"
	quoted[8] = "E. Duane<br />Paxton"
	
	quote[9] = "&quot;Another fine service call! Our lawn serviceman is a real asset to your company! Hope we have another great growing season.&quot;"
	quoted[9] = "Thanks-<br />M & L Ohs<br />Holden"
	
	quote[10] = "&quot;Thanks for coming ASAP, good job!&quot;"
	quoted[10] = "The Keil’s<br />Worcester"
	
	quote[11] = "&quot;I have had little to no problems since your services began a few years ago, and speedy responses when I have. Thank you&quot;"
	quoted[11] = "Rauscher<br />Worcester"
	
	quote[12] = "&quot;Your technician worked well with my contractor to solve the problem. He was pleasant, knowledgeable and cleaned-up after.<br /><br />Excellent Service, very satisfied&quot;"
	quoted[12]="The McGurl’s<br />Worcester"
	
	quote[13] = "&quot;Keep up the good work!&quot;"
	quoted[13] = "N. Buddenhagen<br />Shrewsbury"
	
	quote[14] ="&quot;Your technician was very courteous, neat and clean.&quot;"
	quoted[14] = "J. Manley<br />Worcester"
	
	quote[15] = "&quot;We are very happy & satisfied with our technician.&quot;"
	quoted[15] ="D. Auger<br />Uxbridge"
	
	quote[16] = "&quot;Excellent Service! We are very pleased with the results of our lawn.&quot;"
	quoted[16] = "L. Ohs<br />Holden"
	
	quote[17] = "&quot;Our serviceman was extremely knowledgeable, very approachable and did a great job! Great recommendations for keeping ants out!&quot;"
	quoted[17] = "M.Ahern<br />Paxton"
	
	quote[18] ="&quot;Everyone was very responsive.&quot;"
	quoted[18] ="D. Detenber<br />Westboro"
	
	quote[19] = "&quot;I could not have asked for a more knowledgeable, professional or caring technician. He took time to explain everything to me-&quot;"
	quoted[19] = "J. Lochrie<br />Shrewsbury"
	
	quote[20] = "&quot;I would like to acknowledge that our technician was pleasant, very hardworking and neat! Thank you&quot;"
	quoted[20] = "L. DiGregorio<br />Holden"
	
	quote[21] = "&quot;Your technician was extremely polite and professional and knowledgeable.&quot;"
	quoted[21] = "M. Query<br />Shrewsbury"
	
	quote[22] = "&quot;We would like to complement you on the excellent service provided by your staff, both in the office and the field. Everyone responds quickly to our calls and the follow-up after the service is appreciated. We have used several other exterminators in the past and none compare to your staff&quot;"
	quoted[22] = "The Miller's<br />Holden"
	
	quote[23] = "&quot;We are happy with the excellent service and knowledge. When problems do arise we appreciate the speedy responses. Thank you-&quot;"
	quoted[23] = "A. Rauscher<br />Worcester"
	
	quote[24] = "&quot;Great technician, knows his stuff! He also recommended spraying for ticks, Thanks-&quot;"
	quoted[24] = "Green Acres<br />Sturbridge"
	
	quote[25] = "&quot;Your representive was extremely polite and helpful, I appreciate his time and knowledge.&quot;"
	quoted[25] = "T. Huchowski<br />S. Grafton"
	
	quote[26] = "&quot;The lawn is very green and lush looking, filled in nicely, thank you&quot;"
	quoted[26] = "K. Tivnan<br />Holden"

	quote[27] = "&quot;Thanks for being so fast with my problem.&quot;"
	quoted[27] = "K. Moulton<br />Sterling"
	
	quote[28] = "&quot;Very efficient, used safety practices, kept me informed, exceptional professional.&quot;"
	quoted[28] = "E. Kruczek<br />Auburn"
	
	quote[29] = "&quot;Highly knowledgeable, informative, courteous and friendly.&quot;"
	quoted[29] = "G. Billias<br />Worcester"
	
	quote[30] = "&quot;We are very happy with Ford’s Hometown Services, they are good and prompt.&quot;"
	quoted[30] = "J. & B. Douty<br />Worcester"
	
	function pickRandom(range) {
		if (Math.random)
			return Math.round(Math.random() * (range-1))
		else {
			var now = new Date()
			return (now.getTime() / 1000) % range
		}
	}
	
	//Pick a random quote
	var choice = pickRandom(quote.length)
	
	
	//Display a single quote to the page 
//	if (count != 1) {
//		for (var i=0; i<19; i++) {
//				document.write(quote[i] + '<BR><BR><EM>' + quoted[i] + '</EM>');
//		}
//	}
//	else {
		document.write('<strong>Customer Testimonials</strong><br />');
		document.write(quote[choice] + '<br /><span>' + quoted[choice] + '</span>' );
//	}
	
