// JavaScript Document

var quotes = new Array;
quotes.push("The present<br>is mostly<br>absence.");
quotes.push("Last flower,<br>late bee.<br>Where now?");
quotes.push("What do I know?<br>Who asks?");
document.write(quotes[(Math.floor(Math.random() * quotes.length))]);
