// ==============================================// 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\">\"Consumers paid 9 billion bills by mail, 2.2 billion online and 3.3 billion by other means.\"<br><br></span><span class=\"blue_11\">Future of Mail Study by Pitney Bowes August 2007.<br><br></span>";Quotation[1] = "<br><span class=\"blue_12\">\"Paper-based communications for new credit cards yields the highest rate of success.\"<br><br></span><span class=\"blue_11\">Study conducted by Cardbeat and published by Auriemma Consulting Group.<br><br></span>";Quotation[2] = "<br><span class=\"blue_12\">\"Across every industry, sales that are driven by direct marketing offers are growing faster than overall sales.\"<br><br></span><span class=\"blue_11\">John Greco, President and CEO, Direct Marketing Association.<br><br></span>";Quotation[3] = "<br><span class=\"blue_12\">\"I encourage advertisers, designers, transactional mailers and all of our customers to assist us in recovering more used mail for recycling.\"<br><br></span><span class=\"blue_11\">Maynard Benjamin, President and CEO, Envelope Manufacturers Association Foundation.<br><br></span>";// ======================================// Do not change anything below this line// ======================================var Q = Quotation.length;var whichQuotation=Math.round(Math.random()*(Q-1));function showQuotationRight(){document.write(Quotation[whichQuotation]);}