<!-- 

// ARRAY FUNCTION

function makeArray(len) {

        for (var i= 0; i < len; i++) this[i] = null;
        this.length = len;
        }

// CREATE ARRAY
        
var quote = new Array();

quote[0] = '<div id="testi-img" class="left"><img src="_img/homepage2008/quote_r2r.jpg" width="162" height="161" border="0" /></div><div id="testi-txt" class="left"><div><img src="_img/homepage2008/quote_opening.gif" width="15" height="13" border="0" align="absmiddle" /> With your help, we grew donations 150% from last year! <img src="_img/homepage2008/quote_closing.gif" width="15" height="13" border="0" align="absmiddle" /></div><div id="testi-credit">Rainforest2Reef<br /> <br /><img src="_img/homepage2008/r2r_logo.gif" /></div></div>';

quote[1] = quote[0];

quote[2] = '<div id="testi-img" class="left"><img src="_img/homepage2008/quote_kqed.jpg" alt="kqed" width="162" height="161" border="0" /></div><div id="testi-txt" class="left"><div><img src="_img/homepage2008/quote_opening.gif" width="15" height="13" border="0" align="absmiddle" /> The results were great. The first program’s grew our email list by 19.7% and it was easy to use. Best of all, donors loved it! <img src="_img/homepage2008/quote_closing.gif" width="15" height="13" border="0" align="absmiddle" /></div><div id="testi-credit">KQED<br /> <br /><img src="_img/homepage2008/kqed_logo.gif" /></div></div>';

quote[3] = '<div id="testi-img" class="left"><img src="_img/homepage2008/quote_op_smile.jpg" alt="operation_smile" width="162" height="161" border="0" /></div><div id="testi-txt" class="left"><div><img src="_img/homepage2008/quote_opening.gif" width="15" height="13" border="0" align="absmiddle" /> Wonderful, service. Donors have called and e-mailed me telling me how much they appreciated and enjoyed it. <img src="_img/homepage2008/quote_closing.gif" width="15" height="13" border="0" align="absmiddle" /></div><div id="testi-credit">Operation Smile<br /> <br /><img src="_img/homepage2008/op_smile_logo.gif" /></div></div>';

quote[4] = '<div id="testi-img" class="left"><img src="_img/homepage2008/quote_odc.jpg" alt="ODC" width="162" height="161" border="0" /></div><div id="testi-txt" class="left"><div><img src="_img/homepage2008/quote_opening.gif" width="15" height="13" border="0" align="absmiddle" /> My staff is acting as if I’d bought them a gift by buying the Papilia product. This is worth much more than what we’re paying you. <img src="_img/homepage2008/quote_closing.gif" width="15" height="13" border="0" align="absmiddle" /></div><div id="testi-credit">ODC<br /> <br /><img src="_img/homepage2008/odc_logo.gif" /></div></div>';

quote[5] = '<div id="testi-img" class="left"><img src="_img/homepage2008/quote_norw.jpg" alt="Northwest University" width="162" height="161" border="0" /></div><div id="testi-txt" class="left"><div><img src="_img/homepage2008/quote_opening.gif" width="15" height="13" border="0" align="absmiddle" /> The program has been a true success. With just one postcard we grew our email list by 10% and engaged hundreds of our valuable donors. <img src="_img/homepage2008/quote_closing.gif" width="15" height="13" border="0" align="absmiddle" /></div><div id="testi-credit">Northwest University<br /> <br /><img src="_img/homepage2008/norwst_logo.gif" /></div></div>';



// RANDOM NUMBER GENERATOR

function rand(n) {

        seed = (0x015a4e35 * seed) % 0x7fffffff;
        return (seed >> 16) % n;
        }
        
        var now = new Date();
        var seed = now.getTime() % 0xfffffff


function nospam(user,domain) {
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}



// -->
