
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('"I would use them again if I was going to have a bike transported. Only thing better was if they used a transporter like in Star Trek!"', 'Bill', 'FL to VA');
   testtext[1]= Array('"Outstanding company! The hauler took very good care of my motorcycle and very informative of his destination and time."', 'Michael', 'FL to AR');
   testtext[2]= Array('"When they arrived, they pulled up right in front of my driveway and unloaded the motorcycle for me. All I had to do was sign for it and it was in perfect condition."', 'Karyn', 'MA to MD');
   testtext[3]= Array('"The whole experience was great! They worked with us to get the extra parts for the motorcycle shipped along too. They were prompt and very professional about everything. Thanks for making it so easy!!"', 'Cassie', 'TN to TX');
   testtext[4]= Array('"We were delighted with every aspect of this transaction. We would definitely use this company again."', 'Gayle', 'OH to IN');
   testtext[5]= Array('"As an international customer this all had to be done on line and by phone . The bike was picked up conveniently for the vendor and delivered on time to the container depot in the same condition it left."', 'Luis', 'NJ to PA');
   testtext[6]= Array('"My Honda Goldwing arrived on time as scheduled and I was extremely satified with the service. The drivers were very enthusiastic about their job and were very professional."', 'Kenneth D', '');
   testtext[7]= Array('"My motorcycle arrived timely and was transported with great care! It was so easy to make arrangements to have the Harley brought to me from Minnesota - one phone call!"', 'Shelia ', 'MN to IA');
   testtext[8]= Array('"I was very happy with the transport of my motorcycle, from Florida to South Carolina. Thanks for such a pleasant experience."', 'Pamela', 'FL to SC');


  document.write(testtext[choose_one][0]+'<br>- <b><em>'+testtext[choose_one][1]+' '+testtext[choose_one][2]+'</em></b>');
}