quote = new Array
quote[0] = "\"It is so painless now when I gather up my coupons.  No cutting involved I just click and add...\" <div align=\"right\"><b>S. Sullivan</b></div>";
quote[1] = "\"...at the end of the year when my tax preparer needs my receipts, all I do is just click and print out a summary...\" <div align=\"right\"><b>T. Takatori</b></div>";
quote[2] = "\"...so far so good, I can't believe how easy everything is.  The best part is I help save paper and I don't have to do anything.\" <div align=\"right\"><b>P. Sari</b></div>";
quote[3] = "\"I can't believe how easy everything is. The best part is I help save paper and I don't have to do anything.\" <div align=\"right\"><b>J. Scavo</b></div>";

var rand_no = Math.floor((4-1)*Math.random()) + 1;

document.write(quote[rand_no]);

