
//-- Generate a random number between 0 and max.

  var rNum=NaN
  var seelinkSt = "<a href=\"comments.html\" class=\"smalllink\">";
  var seelinkEnd = "</a>"
  var breakit = "<br>";
  function randomQuote() {
    var Qlength = quote.length;
    while (isNaN(rNum)) {
      rNum=Math.floor(Math.random()*(Qlength))
    }
    return rNum
  }
  var quote = new Array()
  quote[0]='"You deserve great credit for keeping this mediation afloat – it simply would not have settled without your efforts!"' + breakit + breakit + 'California State Deputy Attorney General';
  quote[1]='"I would like to commend Barry for a very professional, intelligent and positive handling of my case…his handling of the situation was the very best anyone could expect…thus saving me thousands of dollars in legal fees"' + breakit + breakit + 'Appellate Family Law Party';
  quote[2]='"This case would not have settled without you – I would be happy to recommend you to anyone!"' + breakit + breakit + 'Certified Appellate Law Specialist ';
  quote[3]='"Barry is great at what he does. Very good effort to discuss an emotional situation impartially"' + breakit + breakit + 'Superior Court Employment Party';
  quote[4]='"The mediator for this case, Barry, did an excellent job.”' + breakit + breakit + 'Superior Court Subrogation Party';
  quote[5]='"Barry was clear in giving instructions, articulate and judicious in running the process. A valuable aid to citizen’s resolution of disputes outside the formal setting of a courtroom"' + breakit + breakit + '';

  
    var my_content = document.getElementById('randquote');
    my_content.innerHTML = quote[randomQuote()] + breakit + breakit + seelinkSt + "More Client Comments? Click here" + seelinkEnd;
