// ==============================================// Copyright 2004 by CodeLifter.com// Free for all; but please leave in this header.// ==============================================var Quotation=new Array() // Set up the quotations to be shown, below.// To add more quotations, continue with the// pattern, adding to the array.  Remember// to increment the Quotation[x] index!Quotation[0] = "<br><span class=\"blue_12\">\"75% of Americans prefer to receive bills in an envelope through the mail.\"<br><br></span>";Quotation[1] = "<br><span class=\"blue_12\">\"86% of American consumers feel envelopes are safe, secure and private.\"<br><br></span>";Quotation[2] = "<br><span class=\"blue_12\">\"75% of Americans say they are most likely to pay attention to direct mail sent to their home.\"<br><br></span>";Quotation[3] = "<br><span class=\"blue_12\">\"The paper industry recovered 50.3% of the paper used in the United States in 2006. That's an increase from 33.5% in 1990.\"<br><br></span>";Quotation[4] = "<br><span class=\"blue_12\">\"The U.S. Postal Service delivers nearly 703 million pieces of mail per day.\"<br><br></span>";// ======================================// Do not change anything below this line// ======================================var Q = Quotation.length;var whichQuotation=Math.round(Math.random()*(Q-1));function showQuotation(){document.write(Quotation[whichQuotation]);}