// The Array Function 

	function makeArray(len) {
	    for (var i = 0; i < len; i++) this[i] = null;
	this.length = len;
	}

	// This is where the array of text/images/sounds is created.

	ideas = new makeArray(22);
	ideas[0] = "<i>The products I ordered were delivered in a timely manner and well packaged to protect the contents.  I appreciate the professionalism and will remember you for future orders.</i>   <BR> <DIV ALIGN=RIGHT>-- M. Hundley. Burroughs</DIV>";
	ideas[1] = "<i>Very good customer service when I called inquiring about optional products. Very knowledgeable staff.  Easy to use website after specific product decision was made.</i> <BR> <DIV ALIGN=RIGHT>-- M. Herrington </DIV> "
	ideas[2] = "<i>Nice product.  Good price.  Thanks, I would definitely buy from you again.</i> <BR> <DIV ALIGN=RIGHT>-- K. Siil </DIV>"
	ideas[3] = "<i>Excellent Service!  I would happily purchase from Galesburg Electric again and recommend it to friends as well.</i> <BR> <DIV ALIGN=RIGHT>-- P. Davis</DIV>"
	ideas[4] = "<i>I received excellent service from your company and was very pleased with the ease of access, the finding of product and the processing of the order.  Well done.  As someone who spends most of my working life trying to source in stock items, you are one of the best, believe me! </i><BR> <DIV ALIGN=RIGHT>-- P. Brennan</DIV>"
	ideas[5] = "<i>I was very much satisfied with the service from your company.  I would gladly recommend Galesburg to any of my friends. </i><BR> <DIV ALIGN=RIGHT>-- L. Levy </DIV>"
	ideas[6] = "<i>It was very straightforward and painless purchase.  Product works fine, delivery time was short and order process a breeze.</i><BR> <DIV ALIGN=RIGHT>-- T. Pou</DIV>"
	ideas[7] = "<i>Your service was excellent & prompt.  I will certainly visit your website for future orders.</i> <BR> <DIV ALIGN=RIGHT>-- H. Sweeney</DIV>"
	ideas[8] = "<i>Your service is very responsive.  I have used this product for cleaning shot guns and couldn't find it locally.</i> <BR> <DIV ALIGN=RIGHT>-- J. Stapleton </DIV>"
	ideas[9] = "<i>Great website and speedy delivery.  Thanks and keep up the good work!</i> <BR> <DIV ALIGN=RIGHT>-- J. Martin </DIV>"
	ideas[10] = "<i>My order was handled very efficiently, the item was received promptly and in good condition.</i> <BR> <DIV ALIGN=RIGHT>-- V. Wong </DIV>"
	ideas[11] = "<i>My experience with Galesburg Electric was fantastic.  Great price and quick delivery.  Thank you very much.</i> <BR> <DIV ALIGN=RIGHT>-- J. Coburn </DIV>";
	ideas[12] = "<i>I highly appreciate your product, prompt service, website design and follow up service.  I pass on your website to others.</i><BR> <DIV ALIGN=RIGHT>-- M. Primozich </DIV>"
	ideas[13] = "<i>Materials arrived on time and intact. Very good customer service from order through delivery.</i><DIV ALIGN=RIGHT> -- D. Clark </DIV>"
	ideas[14] = "<i>I am totally happy with the speed of the delivery especially and the service.  Thank you.  I hope to continue a great biz relationship. </i><DIV ALIGN=RIGHT> -- R. Almada </DIV>"
	ideas[15] = "<i>Outstanding service.  I asked a question online.  It was answered promptly and then I ordered the product.  It came the next day.  Thanks for the great service.</i><DIV ALIGN=RIGHT> -- B. Spooner </DIV>"
	ideas[16] = "<i>Thanks for the great service.  I received my parts quickly and everything worked great.  I'll use Galesburg Electric again! </i><BR> <DIV ALIGN=RIGHT>-- D. Johnson </DIV>"
	ideas[17] = "<i>Couldn't ask for better service.  I will place an order for two more today.  I had another go out and want one as a spare. </i><BR> <DIV ALIGN=RIGHT>-- H. Williams </DIV>"
	ideas[18] = "Thank you for prompt, efficient service.  While our needs are small, we would definitely recommend your company to others.  Thank you again. <DIV ALIGN=RIGHT>-- J. Telfer </DIV>"
	ideas[19] = "<i>Thanks for the speedy turnaround time.  Also thanks for the info that I requested (comparisons of different models).</i><BR> <DIV ALIGN=RIGHT>-- A. Lomahan </DIV>"
	ideas[20] = "<i>Guys thanks for the prompt service!  Home Depot didn't even stock these units.</i><BR> <DIV ALIGN=RIGHT>-- D. Wangler </DIV>"
	ideas[21] = "<i>All I can say is thank you for the fast service and the help that JDK did for me again thank you and you have a very happy customer keep up the hard work it look and shows that you all care.</i><DIV ALIGN=RIGHT> -- E. Patterson </DIV>"


	// The random number generator.

	function rand(n) {
	seed = (0x015a4e35 * seed) % 0x7fffffff;
	return (seed >> 16) % n;
	}
        
	var now = new Date()
	var seed = now.getTime() % 0xffffffff
