function onloadText()
{
  var quotes=new Array();
  
quotes[0]='<SPAN class="quotes_text">"The O2 monitors are working well and doing a great job! Alarm relays are configured with the exhaust fan and is triggered a couple of times a day if we have LN2 bottles in the area. Excellent product,repeatable, and reliable as advertised"<SPAN>Gulfstream Aerospace</SPAN></SPAN>'

quotes[1]='<SPAN class="quotes_text">"The oxygen monitor seems to be performing admirably  The sensor is placed in a process room (an ISO 8 clean room) near a process that uses nitrogen. The monitor was able to point out a substantial leak that we probably wouldn’t have found otherwise!"<SPAN>Pearl Therapeutics, Inc.</SPAN></SPAN>'

quotes[2]='<SPAN class="quotes_text">"The price point of these monitors were very competitive. These are not devices you necessarily want the lowest bidder on, and PureAire provided what I would consider a "complete package" from concept to start up."<SPAN>Cabot Microelectronics.</SPAN></SPAN>'

var whichquote=Math.floor(Math.random()*(quotes.length))

var v = document.getElementById("code1");
    v.innerHTML  = quotes[whichquote];
}