var numQuotes = 35;  // Change this number to reflect how many theQuote are on the quote list below
var useQuoteNumber = Math.round(1 + (Math.random() * (numQuotes - 1)));
theQuote = new Array(numQuotes + 1);

theQuote[1] = "Success usually comes to those who are too busy looking for it. ~ Henry David Thoreau";
theQuote[2] = "Whatever our creed, we feel that no good deed can by any possibility go unrewarded, no evil deed unpunished. ~ Orison Swett Marden";
theQuote[3] = "You cannot do wrong without suffering wrong. ~ Ralph Waldo Emerson";
theQuote[4] = "It's kind of fun to do the impossible. ~ Walt Disney";
theQuote[5] = "I have not failed.  I've just found 10 000 ways that won't work. ~ Thomas Edison";
theQuote[6] = "Not everything that can be counted counts, and not everything that counts can be counted. ~ Albert Einstein";
theQuote[7] = "The people who get on in this world are the people who get up and look for the circumstances they want, and, if they can't find them, make them. ~ George Bernard Shaw";
theQuote[8] = "Success doesn't come to you...you go to it. ~ Marva Collins";
theQuote[9] = "The lure of the distant and the difficult is deceptive.  The great opportunity is where you are. ~ John Burroughs";
theQuote[10] = "Every situation, properly perceived, becomes an opportunity. ~ Helen Schucman";
theQuote[11] = "I find that the harder I work, the more luck I seem to have. ~ Thomas Jefferson";
theQuote[12] = "The golden opportunity you are seeking is in yourself.  It is not in your environment; it is not in luck or chance, or the help of other; it is in yourself alone. ~ Orison Swett Marden";
theQuote[13] = "I do not think there is any other quality so essential to success of any kind as the quality of perseverance.  It overcomes almost everything, even nature. ~ John D. Rockefeller";
theQuote[14] = "Whether you think that you can, or that you can't, you are usually right. ~ Henry Ford";
theQuote[15] = "Life in abundance comes only through great love. ~ Elbert Hubbard";
theQuote[16] = "One of the symptoms of an approaching nervous breakdown is the belief that one's work is terribly important. ~ Bertrand Russell";
theQuote[17] = "What force is more potent than love? ~ Igor Stravinsky";
theQuote[18] = "Problems are only opportunities in work clothes. ~ Henry J. Kaiser";
theQuote[19] = "Opportunities? They are all around us...there is power lying latent everywhere waiting for the observant eye to discover it. ~ Orison Swett Marden";
theQuote[20] = "There are only two ways to live your life.  One is as though nothing is a miracle.  The other is that everything is a miracle. ~ Albert Einstein";
theQuote[21] = "We don't need more strength or more ability or greater opportunity. What we need is to use what we have. ~ Basil S. Walsh";
theQuote[22] = "Destiny is not a matter of chance; it is a matter of choice.  It is not something to be waited for; but, rather something to be achieved. ~ William Jennings Bryan";
theQuote[23] = "Opportunity rarely knocks on your door. Knock rather on opportunity's door if you ardently wish to enter. ~ B.C. Forbes";
theQuote[24] = "It's not the size of the dog in the fight, it's the size of the fight in the dog. ~ Mark Twain";
theQuote[25] = "In the middle of difficulty lies opportunity. ~ Albert Einstein";
theQuote[26] = "A wise man will make more opportunities than he finds. ~ Francois Bacon";
theQuote[27] = "There is no future in any job.  The future lies in the man who holds the job. ~ George Crane";
theQuote[28] = "Opportunity...often it comes in the form of misfortune, or temporary defeat. ~ Napoleon Hill";
theQuote[29] = "The price of success is perseverance.  The price of failure comes cheaper. ~ Anonymous";
theQuote[30] = "Adversity reveals genius, prosperity conceals it. ~ Horace";
theQuote[31] = "640K ought to be enough for anybody. ~ Bill Gates in 1981";
theQuote[32] = "Don't be irreplaceable. If you can't be replaced, you can't be promoted. ~ unknown";
theQuote[33] = "My advice to you is get married: if you find a good wife, you'll be happy; if not, you'll become a philosopher ~ Socrates";
theQuote[34] = "No one is listening until you make a mistake. ~ unknown";
theQuote[35] = "Never test the depth of the water with both feet. ~ unknown";
function showQuotes()
{
	var allTheQuotes = '<HTML>\r'; // '\r' adds a carriage return.
	allTheQuotes += '<HEAD>\r';
	allTheQuotes += '<META NAME="Copyright" CONTENT="Copyright © 1999-2001 A E Rose Information Service Ltd.">\r';
	allTheQuotes += '<META NAME="Description" CONTENT="">\r';
	allTheQuotes += '<META NAME="Keywords" CONTENT="">\r';
	allTheQuotes += '<TITLE>A E Rose Information Service Ltd.</TITLE>\r';
	allTheQuotes += '</HEAD>\r';
	allTheQuotes += '<BODY TEXT="#000000" BGCOLOR="#FFFFFF" BACKGROUND="images/bg.jpg"\r';
	allTheQuotes += 'LINK="#0000FF" VLINK="#0000FF" ALINK="#0000FF">\r';
	allTheQuotes += '<DIV ALIGN="CENTER">\r';
	allTheQuotes += '<TABLE WIDTH=100% BORDER=0 CELLSPACING=0 CELLPADDING=2>\r';
	allTheQuotes += '<TR><TD ALIGN="CENTER"><IMG SRC="images/interesting.gif" WIDTH=433 HEIGHT=60 ALT="Interesting Quotes"></TD>\r';
	allTheQuotes += '<TD COLSPAN=2><IMG SRC="images/logosm.gif" WIDTH=112 HEIGHT=114 ALT="There is time to do it right."></TD></TR>\r';
	allTheQuotes += '<TR><TD><IMG SRC="images/hlineblue.gif" BORDER=0 WIDTH=100% HEIGHT=10></TD></TR>\r';
	allTheQuotes += '<TR><TD><IMG SRC="/images/spacer.gif" BORDER=0 WIDTH=5 HEIGHT=15 ALT=""></TD></TR>\r';
	allTheQuotes += '<TR VALIGN="TOP"><TD><DIV ALIGN="JUSTIFY">\r';
	allTheQuotes += '<OL>\r';
	for (loop=1; loop <= numQuotes; loop++) // loop through all quotes from 1 to numQuotes >
	{
		allTheQuotes += '<LI>' + theQuote[loop] + '\r';
	}
	allTheQuotes += '</OL>\r';
	allTheQuotes += '<P><DIV ALIGN="CENTER">';
	allTheQuotes += '<A HREF="/quotes.shtml"><IMG SRC="images/quotes.jpg" BORDER=0></A>';
	allTheQuotes += '<HR WIDTH=50%><FONT SIZE="1">\r';
	allTheQuotes += '<A HREF="/aboutus.shtml">About Us</A> |\r';
	allTheQuotes += '<A HREF="/products/index.shtml">Products</A> |\r';
	allTheQuotes += '<A HREF="/history.shtml">History</A>  |\r';
	allTheQuotes += '<A HREF="/contactus.shtml">Contact Us</A><BR>\r';
	allTheQuotes += '<A HREF="/index.shtml">Home</A></FONT></DIV></TD>\r';
	allTheQuotes += '<TD><IMG SRC="/images/vlineblue.gif" HEIGHT=1500 WIDTH=2></TD>\r';
	allTheQuotes += '<TD VALIGN="TOP"><SCRIPT LANGUAGE = "JavaScript"><!--\r';
	allTheQuotes += 'if (document.images) {		// Active Images\r';
	allTheQuotes += 'img1on = new Image();\r';
	allTheQuotes += 'img1on.src = "/images/btaboutus2.gif";\r';
	allTheQuotes += 'img2on = new Image();\r';
	allTheQuotes += 'img2on.src = "/images/btproducts2.gif";\r';
	allTheQuotes += 'img3on = new Image();\r';
	allTheQuotes += 'img3on.src = "/images/bthistory2.gif";\r';
	allTheQuotes += 'img4on = new Image();\r';
	allTheQuotes += 'img4on.src = "/images/btcontact2.gif";\r';
	allTheQuotes += 'img5on = new Image();\r';
	allTheQuotes += 'img5on.src = "/images/bttnh2.gif";\r';
	allTheQuotes += 'img6on = new Image();\r';
	allTheQuotes += 'img6on.src = "/images/bthome2.gif";\r';
	allTheQuotes += 'img7on = new Image();\r';
	allTheQuotes += 'img7on.src = "/images/btgrow2.gif";\r';
	allTheQuotes += 'img1off = new Image();\r';
	allTheQuotes += 'img1off.src = "/images/btaboutus.gif";\r';
	allTheQuotes += 'img2off = new Image();\r';
	allTheQuotes += 'img2off.src = "/images/btproducts.gif";\r';
	allTheQuotes += 'img3off = new Image();\r';
	allTheQuotes += 'img3off.src = "/images/bthistory.gif";\r';
	allTheQuotes += 'img4off = new Image();\r';
	allTheQuotes += 'img4off.src = "/images/btcontact.gif";\r';
	allTheQuotes += 'img5off = new Image();\r';
	allTheQuotes += 'img5off.src = "/images/bttnh.gif";\r';
	allTheQuotes += 'img6off = new Image();\r';
	allTheQuotes += 'img6off.src = "/images/bthome.gif";\r';
	allTheQuotes += 'img7off = new Image();\r';
	allTheQuotes += 'img7off.src = "/images/btgrow.gif";}\r';
	allTheQuotes += '// Function to "activate" images.\r';
	allTheQuotes += 'function imgOn(imgname) {\r';
	allTheQuotes += 'if (document.images) {\r';
	allTheQuotes += 'document[imgname].src = eval(imgname + "on.src");}}\r';
	allTheQuotes += '// Function to "deactivate" images.\r';
	allTheQuotes += 'function imgOff(imgname) {\r';
	allTheQuotes += 'if (document.images) {\r';
	allTheQuotes += 'document[imgname].src = eval(imgname + "off.src");}}\r';
	allTheQuotes += '// -->\r';
	allTheQuotes += '</SCRIPT>\r';
	allTheQuotes += '<DIV ALIGN="CENTER"><IMG SRC="/images/servingsince.gif">\r';
	allTheQuotes += '<TABLE BORDER=0>\r';
	allTheQuotes += '<TR ALIGN=CENTER>\r';
	allTheQuotes += '<TD VALIGN="TOP" ALIGN="CENTER"><A HREF="/aboutus.shtml"\r';
	allTheQuotes += 'onMouseOver="imgOn(\'img1\')"\r';
	allTheQuotes += 'onMouseOut="imgOff(\'img1\')"><IMG NAME="img1" SRC="/images/btaboutus.gif"\r';
	allTheQuotes += 'ALT="About Us" BORDER=0></A></TD></TR>\r';
	allTheQuotes += '<TR ALIGN=CENTER>\r';
	allTheQuotes += '<TD><A HREF="/products/index.shtml"\r';
	allTheQuotes += 'onMouseOver="imgOn(\'img2\')"\r';
	allTheQuotes += 'onMouseOut="imgOff(\'img2\')"><IMG NAME="img2" SRC="/images/btproducts.gif"\r';
	allTheQuotes += 'ALT="Products and Services" BORDER=0></A></TD></TR>\r';
	allTheQuotes += '<TR ALIGN=CENTER>\r';
	allTheQuotes += '<TD><A HREF="/history.shtml"\r';
	allTheQuotes += 'onMouseOver="imgOn(\'img3\')"\r';
	allTheQuotes += 'onMouseOut="imgOff(\'img3\')"><IMG NAME="img3" SRC="/images/bthistory.gif"\r';
	allTheQuotes += 'ALT="History" BORDER=0></A></TD></TR>\r';
	allTheQuotes += '<TR ALIGN=CENTER>\r';
	allTheQuotes += '<TD><A HREF="/contactus.shtml"\r';
	allTheQuotes += 'onMouseOver="imgOn(\'img4\')"\r';
	allTheQuotes += 'onMouseOut="imgOff(\'img4\')"><IMG NAME="img4" SRC="/images/btcontact.gif"\r';
	allTheQuotes += 'ALT="Contact Us" BORDER=0></A></TD></TR>\r';
//	allTheQuotes += '<TR ALIGN=CENTER>\r';
//	allTheQuotes += '<TD><A HREF="/tipsnhints.shtml"\r';
//	allTheQuotes += 'onMouseOver="imgOn(\'img5\')"\r';
//	allTheQuotes += 'onMouseOut="imgOff(\'img5\')"><IMG NAME="img5" SRC="/images/bttnh.gif"\r';
//	allTheQuotes += 'ALT="Tips and Hints" BORDER=0></A></TD></TR>\r';
	allTheQuotes += '<TR ALIGN=CENTER>\r';
	allTheQuotes += '<TD><A HREF="/index.shtml"\r';
	allTheQuotes += 'onMouseOver="imgOn(\'img6\')"\r';
	allTheQuotes += 'onMouseOut="imgOff(\'img6\')"><IMG NAME="img6" SRC="/images/bthome.gif"\r';
	allTheQuotes += 'ALT="Home" BORDER=0></A></TD></TR>\r';
	allTheQuotes += '<TR ALIGN=CENTER>\r';
	allTheQuotes += '<TD><A HREF="/customer.shtml"\r';
	allTheQuotes += 'onMouseOver="imgOn(\'img7\')"\r';
	allTheQuotes += 'onMouseOut="imgOff(\'img7\')"><IMG NAME="img7" SRC="/images/btgrow.gif"\r';
	allTheQuotes += 'ALT="How Can We Help Your Business Grow?" BORDER=0></A></TD></TR>\r';
	allTheQuotes += '<TR><TD ALIGN="CENTER"><IMG SRC="/images/spacer.gif" BORDER=0 WIDTH=148 HEIGHT=10></TD></TR>\r';
	allTheQuotes += '<TR><TD ALIGN="CENTER"><IMG SRC="/images/as40pid1.gif" ALT="AS/400 Partners in Development"\r';
	allTheQuotes += 'WIDTH=125 HEIGHT=125 BORDER=0></TD></TR>\r';
	allTheQuotes += '<TR><TD ALIGN="CENTER"><IMG SRC="/images/as40pid2.gif" ALT="AS/400 Partners in Development"\r';
	allTheQuotes += 'WIDTH=125 HEIGHT=65 BORDER=0></TD></TR>\r';
	allTheQuotes += '<TR><TD><IMG SRC="/images/spacer.gif" BORDER=0 WIDTH=148 HEIGHT=15 ALT=""></TD></TR>\r';
	allTheQuotes += '<TR><TD ALIGN="CENTER"><FONT SIZE="1"><A HREF="mailto:aeris@aerose.com">AERIS@AERose.com</A></FONT></TD></TR>\r';
	allTheQuotes += '</TABLE></DIV></TD></TR>\r';
	allTheQuotes += '</TABLE>\r';
	allTheQuotes += '</DIV>\r';
	allTheQuotes += '</BODY>\r';
	allTheQuotes += '</HTML>\r';
	document.writeln(allTheQuotes);
}
document.writeln('<FONT COLOR="purple"><B><A HREF="" onClick="showQuotes()"><I>' + theQuote[useQuoteNumber] + '</I></A></B></FONT><BR>');

