var message = new Array();
message[0]='"PRG\'s personnel are courteous and polite - we really felt at home!"';
message[1]='"The PRG tour was very informative. Our tour guide was knowledgeable and did a great job of answering our questions!" — James Watson/MarinoWare';
message[2]='"PRG truly knows its business. The office staff were extremely cooperative and our tour guide was excellent!"';
message[3]='"I was very impressed. You are truly masters of your area!"';
message[4]='"From travel directions to technical know-how, the people at PRG cover all the bases!"';
message[5]='"We couldn\'t be happier with PRG. We left the plant with a better understanding of PRG\'s capabilities and complete faith in their practices!"';
message[6]='"PRG exceeded my expectations both personally and professionally. I am very impressed with all aspects of your business!"';
message[7]='"Precision is our #1 roll repair company, they have earned it."';
message[8]='"Great appreciation and thanks to Precision Roll Grinders for immediately responding to our emergency."';
message[9]='"Our line was up and running A-1 product for our customers on time. Your efforts were extraordinary and appreciated."';
message[10]='"Thanks for the extra work and effort to service our roll . . . especially over the holiday weekend."';
message[11]='"I could not have asked for any better cooperation and communication day and night to get the rolls back ASAP."';
message[12]='"PRG\'s excellent technical and manufacturing capabilities keep us coming back time and time again!"';
message[13]='"PRG\'s expert and courteous staff made our visit enjoyable, educational and all-around successful!" — Helmut Schmer/Andritz';
message[14]='"From your knowledgeable staff to your state-of-the-art facilities, PRG\'s expertise is apparent"';
message[15]='"We truly appreciate PRG\'s attention to detail and your top-notch service makes all the difference!"';
message[16]='"PRG\'s excellent technical and manufacturing capabilities keep us coming back time and time again!" — Kevin Burton/Alpha Associates';


function showRandomMsg(ct)
{
   var ix = Math.round(Math.random() * 2) + 0;
   var obj = document.getElementById('desc');
   if (ct == null || ct == message.length) {
      xi = 0;
   }
   else {
      xi = ct;
   }
   if (document.layers) {
      document.d1.document.d2.document.write('<p align=right><font color="#EEEFF3" face="Arial Narrow,Arial MT Condensed Light,Arial,sans-serif"><b><i>'+message[xi]+'</i></b></font></p>');
      document.d1.document.d2.document.close();
   }
   else {   

      obj.innerHTML = '<font color="#EEEFF3" face="Arial Narrow,Arial MT Condensed Light,Arial,sans-serif"><b><i>'+message[xi]+'</i></b></font>';
   }
      
   setTimeout("showRandomMsg(xi+1)",4000);
}
