
function get_random(maxNum)
{
  if (Math.random && Math.round)
  {
    var ranNum= Math.round(Math.random()*(maxNum-1));
    ranNum+=1;
    return ranNum;
  }
  else
  {
  today= new Date();
  hours= today.getHours();
  mins=   today.getMinutes();
  secn=  today.getSeconds();
  if (hours==19)
   hours=18;
  var ranNum= (((hours+1)*(mins+1)*secn)%maxNum)+1;
  return ranNum;
  }
}

function get_Text()
{
  var choose_one= get_random(9);  
  choose_one--;
  var testtext= new Array(8) 
   testtext[0]= Array('"Overall, service was impeccable. Thank you for helping make my relocation process smoother!"', 'Jose', 'OH to CA');
   testtext[1]= Array('"My car was delivered to my driveway as promised, when promised, and for the price promised."', 'Bruce', 'OH to CA');
   testtext[2]= Array('"Thank you for your service and value. If I ever have need of auto transport services again, I will simply call you."', 'Kevin', 'MI to FL');
   testtext[3]= Array('"All-in-all, I found the experience to be excellent and accommodating to my needs."', 'Meryl', 'NJ to CA');
   testtext[4]= Array('"Overall, service was impeccable. Thank you for helping make my relocation process smoother!"', 'Jose', 'Mt. View, CA');
   testtext[5]= Array('"Overall, service was impeccable. Thank you for helping make my relocation process smoother!"', 'Jose', 'Mt. View, CA');
   testtext[6]= Array('"Overall, service was impeccable. Thank you for helping make my relocation process smoother!"', 'Jose', 'Mt. View, CA');
   testtext[7]= Array('"Overall, service was impeccable. Thank you for helping make my relocation process smoother!"', 'Jose', 'Mt. View, CA');
   testtext[8]= Array('"Overall, service was impeccable. Thank you for helping make my relocation process smoother!"', 'Jose', 'Mt. View, CA');


  document.write(testtext[choose_one][0]+'<br>-<b><em>'+testtext[choose_one][1]+' '+testtext[choose_one][2]+'</em></b>');
}