<!-- Begin
var howMany = 4
var quote = new Array(howMany+1)
quote[0]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``He was always late on principle, <br> his principle being that punctuality is the thief of time.`` <br> - Oscar Wilde</font>'
quote[1]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``There are many fine things which you mean to do some day, <br> under what you think will be more favorable circumstances. <br> But the only time that is yours is the present.`` <br> - Grenville Kleiser</font>'
quote[2]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Time only seems to matter when it`s running out.`` <br> - Peter Strup</font>'
quote[3]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``To live is so startling it leaves little time for anything else.`` <br> - Emily Dickinson</font>'
quote[4]='<font face="Arial Rounded MT Bold" color="#FFFFFF" size="2">``Lost time is never found again.`` <br> - Benjamin Franklin</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 -->