/*

ZM Random Quote Generator by Tor de Vries

Quotes are stored with two sets of information: the quote "Q" (the
actual thing that was said) and the attribute "A" (the name of the
source who said it).  Here is an example:

   Q[Q.length] = "This is the first of the sample quotes.";
   A[A.length] = "Joe Shmoe";

Every quote needs both of these.  Just keep them in sequence like
the examples below.

Finally, you can edit the font style, etc., using the three quote
prefix, delimiter and suffix variables below.

*/

// DO NOT CHANGE THESE TWO LINES
var Q = new Array;
var A = new Array;



// YOU CAN CHANGE THESE
Q[Q.length] = "Advantages over other services… improvement upon the concept of the ‘disposable’ email address… the service will cost 99¢ a month… a small price to pay for a lock that keeps out spammers.";
A[A.length] = "Forbes.com, February 2, 2004";

Q[Q.length] = "Spam-fighting experts have long advised having multiple email accounts… but this is likely to become unnecessary with ZoEmail...";
A[A.length] = "The New York Times, February 5, 2004";

Q[Q.length] = "Other email service providers such as AOL, Microsoft and Yahoo offer filtering services, but what makes ZoEmail different… is that it can block unwanted email without blocking emails from friends, colleagues and mailing lists...";
A[A.length] = "CNET News.com, February 5, 2004";

Q[Q.length] = "It’s a simple way of keeping spam and whatnot out of your inbox… ZoEmail sounds like it’s worth a spin.";
A[A.length] = "Loose Wire (Dow Jones), February 6";





// THESE ARE THE FONT STYLES AND CURLY QUOTATION MARKS
var quotePrefix='<i><b><font style="font-family: Arial, sans serif;font-size: 12px;color=#0F4C9F;">&ldquo;';
var quoteDelimiter='&rdquo;</font></b></i><br><font style="font-family: Arial, sans serif;font-size: 10px;color=#0F4C9F;">- ';
var quoteSuffix='</font>';



// DO NOT CHANGE ANYTHING BELOW THIS LINE
// (unless you know what you're doing)
function randomQuote() {
	n=Math.round((Math.random()) * (Q.length - 1));
	document.write(quotePrefix + Q[n] + quoteDelimiter + A[n] + quoteSuffix);
}

randomQuote();
