<html>
<body>
<SCRIPT>
var quotes = new Array(4);
quotes[0] = "Early to be and early to rise makes a man, healthy, wealthy and wise - Ben Franklin";
quotes[1] = "I was recently on a tour of Latin America, and the only regret I have was that I didn’t study Latin harder in school so I could converse with those people.- Dan Quayle";
quotes[2] = "Dictionary is the only place that success comes before work. Hard work is the price we must pay for success. I think you can accomplish anything if you’re willing to pay the price. - Vince Lombardi";
quotes[3] = "Someday – and that day may never come – I’ll call upon you to do a service for me. But until that day, accept this justice as gift on my daughter’s wedding day. - Vito Corleone"

</SCRIPT>
<BODY>
<SCRIPT>
var Quote = quotes[Math.round((quotes.length - 1) * Math.random())];

document.write(Quote);
</SCRIPT>
</body> <br> </html>