<!-- Begin
var howMany = 5
var quote = new Array(howMany+1)
quote[0]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time is a fixed income and, as with any income, <br> the real problem facing most of us is <br> how to live successfully within our daily allotment.`` <br> - Margaret B. Johnstone</font>'
quote[1]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``What we love to do, we find time to do.`` <br> - John L. Spalding</font>'
quote[2]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time heals all wounds... <br> ...unless you pick at them.`` <br> - Shawn Alexander</font>'
quote[3]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``There is time for everything.`` <br> - Thomas Edison</font>'
quote[4]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``What, then, is time? <br>If no one asks me, I know what it is. <br>If I wish to explain it to him who asks, I do not know.`` <br> - Saint Augustine</font>'
quote[5]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Best to write your memoirs while you`re young... <br>...think of all the time it will save you.`` <br> - Author 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 -->