function GetQuote(sBody, sAuthor, sLink)
{
  var nQuotes = 2;
  var sBodyArray = new Array(nQuotes);
  var sAuthorArray = new Array(nQuotes);
  var sLinkArray = new Array(nQuotes);
  sBodyArray[0]   = "We believe IP blue\'s softphone will deliver more value <br>to our business clients.";
  sAuthorArray[0]   = "Dan Hoffman, M5 networks, President";
  sLinkArray[0]   = "http://www.m5net.com/press.php?page_id=297";
  sBodyArray[1]   = "The softphone allows me to work seamlessly, regardless <br>of my location, using only my laptop to connect to <br>my office\’s M5 phone system";
  sAuthorArray[1]   = "Herman H. Tarnow, Esq, Tarnow &amp; Juvelier, LLP";
  sLinkArray[1]   = "http://www.m5net.com/press.php?page_id=297";
  //get random quote:
  var nIndex = Math.round(Math.random() * (nQuotes-1) );
  sBody.setValue( sBodyArray[nIndex] );
  sAuthor.setValue( sAuthorArray[nIndex]);
  sLink.setValue(  sLinkArray[nIndex]);



  //no quotes at this point:
  sBody.setValue("");
  sAuthor.setValue("");
  sLink.setValue("");

}