/*

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] = "...an improvement upon the concept of the 'disposable' email address...";
A[A.length] = "Forbes.com, February 2, 2004";

Q[Q.length] = "A small price to pay for a lock that keeps spammers out.";
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] = "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...";
A[A.length] = "Loose Wire (Dow Jones), February 6";

Q[Q.length] = "ZoEmail sounds like it's worth a spin.";
A[A.length] = "Loose Wire (Dow Jones), February 6";

Q[Q.length] = "ZoEmail restores email as it must have been before spam.";
A[A.length] = "About.com, March 4, 2004";

Q[Q.length] = "ZoEmail provides email accounts with a near-perfect spam record.";
A[A.length] = "About.com, March 4, 2004";

Q[Q.length] = "ZoEmail really does keep spam out.";
A[A.length] = "PC Magazine, March 31, 2004";

Q[Q.length] = "...Effective and easy to use. It never, ever misfiles valid mail as spam.";
A[A.length] = "PC Magazine, March 31, 2004";

Q[Q.length] = "ZoEmail is off to a promising start.";
A[A.length] = "USA Today, April 22, 2004";




// THESE ARE THE FONT STYLES AND CURLY QUOTATION MARKS
var quotePrefix='<i><b><font style="font-family: Arial, sans serif;font-size: 13px;color=#0F4C9F;">&ldquo;';
var quoteDelimiter='&rdquo;</font></b></i><br><font style="font-family: Arial, sans serif;font-size: 11px;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();
