<!-- Begin
var howMany = 4
var quote = new Array(howMany+1)
quote[0]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time is the only critic without ambition.`` <br> - John Steinbeck</font>'
quote[1]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``As if you could kill time without injuring eternity.`` <br> - Henry David Thoreau</font>'
quote[2]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``For time is the longest distance between two places.`` <br> - Tennessee Williams</font>'
quote[3]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``The only reason for time is so that everything doesn`t happen at once.`` <br> - Albert Einstein</font>'
quote[4]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``I`ve been on a calendar, but never on time.`` <br> - Marilyn Monroe</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 -->