<html>
<head>
<SCRIPT type="text/javascript">
var quotations = new Array()
quotations[0]= "I have not failed. I've just found 10,000 ways that won't work.<br/><b>Thomas Alva Edison</b>"
quotations[1]= "The great thing about a computer notebook is that no matter how much you stuff into it, it doesn't get bigger or heavier.<br/><b>Bill Gates</b>"
quotations[2]= "Computers make it easier to do a lot of things, but most of the things they make it easier to do don't need to be done.<br/><b>Andy Rooney</b>"
quotations[3]= "Only two things are infinite, the universe and human stupidity, and I'm not sure about the former.<br/><b>Albert Einstein</b>"
quotations[4]= "Whether you think that you can, or that you can't, you are usually right.</br><b>Henry Ford</b>"
quotations[5]= "I'm going to be a great movie star some day.<br/><b>Marilyn Monroe</b>"
function display()
{
a=Math.floor(Math.random()*quotations.length)
document.getElementById('quotation').innerHTML=quotations[a]
setTimeout("display()",1000)
}
</SCRIPT>
</head>
<body>
<div id="quotation">
<SCRIPT type="text/javascript">display()</SCRIPT>
</div>
</body>
</html>