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;
  }
}

var firstid = 0;

function get_Text()
{
 if (document.images)
 {


  var text= new Array(21) 
  text[0]="Powerhouse Racing, Inc. Excellent fast service and quality recommend to all you Joe ";
  text[1]="Fantastic service";
  text[2]="Great product and fast deivery, would"; 
  text[3]="VERY fast delivery and VERY helpfull! Impressed";
  text[4]="Nice Guy, a hard working down to";
  text[5]="Fast delivery, faster to deal";
  text[6]="Top job once again, once again Joe";
  text[7]="Fantastic service, received parts in";
  text[8]="Thanks Joe! Great communication, very";
  text[9]="Great price and fast delivery. Thanks";
  text[10]="I've been doing business with PHR since early 2000 and have";
  text[11]="Excellent service and communication!";
  text[12]="Bought a Stage 1 Fuel system, very nice piece of";
  text[13]="Just wanted to share my recent experience with PHR.";
  text[14]="Hello Joe my Supra will be featured in Red Line Magizine next year";
  text[15]="I appreciate the work and professionalism.";
  text[16]="I recieved all parts today, very good!";
  text[17]="Joe kicks ass!!";
  text[18]="Just wanted to post up to express my satisfaction in dealings with Joe and Powerhouse Racing.";
  text[19]="Yea, I love dealing with PHR as well.";
  text[20]="Thanks for the Great Service!";
  text[21]="Great product, good customer service, and quick delivery!";
  text[22]="Many thanks Joe for a quick & easy buy, highly recommended.";
  text[23]="The power is awesome ... I didn't expect the car to be that fast!";
  
  
  var found = false;
  while(!found){
    var choose_one= get_random(21);  
    choose_one--;
  
    // if choose_one is valid and
    if(text[choose_one] != "undefined" && (firstid == 0 || choose_one != firstid)){
      found = true;
    }
  }

  if(firstid == 0){
    firstid = choose_one;
  }

  document.write("<font size=1>"+text[choose_one]+"<a href='quotes.shtml#"+choose_one+"'>...more</A></font>");
 }
}

function get_Text2()
{
  get_Text();
}