var howMany = 9 ;
var quote = new Array( howMany + 1 ) ;
var auth = new Array( howMany + 1 ) ;
quote[0]="You can close more business in two months by becoming interested in other people than you can in two years by trying to get people interested in you. " ;
auth[0]="Dale Carnegie";
quote[1]="Never be afraid to do something new. Remember, amateurs built the ark; professionals built the titanic." ;
auth[1]="Anon";
quote[2]="The best executive is the one who has sense enough to pick good men to do what he wants done, and self-restraint to keep from meddling with them while they do it." ;
auth[2]="Theodore Roosevelt";
quote[3]="The bad news is time flies. The good news is you're the pilot." ;
auth[3]="Michael Althsuler";
quote[4]="The beginning is the most important part of the work" ;
auth[4]="Plato";
quote[5]="Don't be afraid to take a big step when one is indicated. You can't cross a chasm in two small steps" ;
auth[5]="David Lloyd George";
quote[6]="We must become the change we want to see" ;
auth[6]="Mahatma Gandhi";
quote[7]="Close your eyes and imagine where you want to be. Imagine the complete journey you need to take in order to get there. Now go pack. Your reservations have been made" ;
auth[7]="Michelle Ustaszeski ";
quote[8]="In any moment of decision the best thing you can do is the right thing, the next best thing is the wrong thing, and the worst thing you can do is nothing" ;
auth[8]="Theodore Roosevelt";
quote[9]="A dream is just a dream. A goal is a dream with a plan and a deadline" ;
auth[9]="Harvey Mackay";

function rndnumber()
	{ 
		var randscript = -1 ;
		while (randscript < 0 || randscript > howMany || isNaN(randscript))
			{ 
				randscript = parseInt(Math.random()*(howMany+1)) ;
			} 
		return randscript ;
	} 
