<!-- Begin
var howMany = 5
var quote = new Array(howMany+1)
quote[0]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time is the coin of your life.  <br> It is the only coin you have, and only you can determine how it will be spent.  <br> Be careful lest you let other people spend it for you.`` <br> - Carl Sandburg</font>'
quote[1]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``You will never find time for anything. &nbsp;&nbsp;If you want time you must make it.`` <br> - Charles Buxton</font>'
quote[2]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``You have to allow a certain amount of time in which you are doing nothing <br> in order to have things occur to you, to let your mind think.`` <br> - Mortimer Adler</font>'
quote[3]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time takes it all, whether you want it to or not.`` <br> - Stephen King</font>'
quote[4]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time, Time, Time, see what`s become of me....`` <br> - Paul Simon</font>'
quote[5]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time may be a great healer, but it`s a lousy beautician.`` <br> - Unknown</font>'
function rndnumber(){
var randscript = -1
while (randscript < 0 || randscript > howMany || isNaN(randscript)){
randscript = parseInt(Math.random()*(howMany+1))
}
return randscript
}
num = rndnumber()
rndquot = quote[num]
document.write(rndquot)
// End -->