/////////////////////////////////////////////////////////////////////////////
// $Id: //depot/websites/lasertherapycenter/javascript/testimonials.js#3 $
// $Header: //depot/websites/lasertherapycenter/javascript/testimonials.js#3 $
// $Date: 2007/11/29 $
// $DateTime: 2007/11/29 23:35:55 $
// $Change: 260 $
// $File: //depot/websites/lasertherapycenter/javascript/testimonials.js $
// $Revision: #3 $
// $Author: gkosinsk $
// 
/////////////////////////////////////////////////////////////////////////////

/////////////////////////////////////////////////////////////////////////////
// Function:     RunOnLoad
// Arguments:    null
// Return Value: null
// Comment:      
/////////////////////////////////////////////////////////////////////////////
function RunOnLoad()
{
   var Body;
   var TagLine;
   var Note;
   var NumEntries = 13;
   var Num =parseInt(Math.random() * NumEntries, 10);
   
   switch(Num)
   {
      case 0:
         Body = "\"The result have been spectacular, they overachieve compared to the myriad of the other treatments that I have tried in the past 2 years.\"";
         TagLine = "James F, 28 years old, Sept 2005";
         Note = "Suffered from Carpal Tunnel Syndrome";
         break;

      case 1:
         Body = "\"You can see results even from the first time. There was a big difference. I highly recommend it to all my family and friends; you can even call me at 416-450-7102 to get further information.\"";
         TagLine = "Irakli P, 49 years old, Sept 2005";
         Note = "Suffered from Knee Meniscus Injury";
         break;

      case 2:
         Body = "\"Exceptional Professional Service. The results are remarkable, I’m pain free in a short period of time. It even improved my golf game. I highly recommend the laser treatments to all my friends.\"";
         TagLine = "Geroge B, 50 years old, Aug 2005";
         Note = "Suffered from Sprained Right Wrist";
         break;

      case 3:
         Body = "\"I suffered from a bad fall. I was unable to even lift my fork to eat. After 6 treatments I was amazed with the results. I finished my 10 treatments and was 100% cured. I am now able to lift any weight with no problems. I highly recommend this laser therapy to all my friends and family.\"";
         TagLine = "Golfo P, 81 years old, June 2005";
         Note = "Suffered from a Fractured Right Wrist";
         break;

      case 4:
         Body = "\"I no longer need treatment and I have no pain what so ever...\"";
         TagLine = "Debbie W";
         Note = "December 1999";
         break;

      case 5:
         Body = "\"improved my quality of life...\"";
         TagLine = "Amwar A";
         Note = "December 2004";
         break;

      case 6:
         Body = "\"It has no side effects and goes right to the source of the problem.\"";
         TagLine = "Amwar A";
         Note = "December 2004";
         break;

      case 7:
         Body = "\"After one laser treatment, I no longer need pain medication...\"";
         TagLine = "Gerry H";
         Note = "May 2004";
         break;

      case 8:
         Body = "\"I have been lucky enough to have received treatment which made such a difference in my health and quality of life.\"";
         TagLine = "Kenneth L";
         Note = "December 2003";
         break;

      case 9:
         Body = "\"I have several players now that only wish to have their injuries treated with laser.\"";
         TagLine = "Ron Culp";
         Note = "The Miami Heat NBA Basketball Team";
         break;

      case 10:
         Body = "\"We have had great success treating their acute inflammatory problems.\"";
         TagLine = "Ron Culp";
         Note = "The Miami Heat NBA Basketball Team";
         break;

      case 11:
         Body = "\"I’m convinced that without your laser unit, I would not be playing competitive golf as I am now.\"";
         TagLine = "Steve Jones";
         Note = "PGA Tour Player";
         break;

      default:
         Body = "\"Since starting with the laser, I have had some outstanding results in being able to get our athletes back to the game and practice. I have no hesitations to give this unit my full endorsement.\"";
         TagLine = "Chuck Mooney";
         Note = "Head Trainer, The Toronto Raptors";
         break;
   }

   var BodyText = document.createTextNode(Body);
   var TagLineText = document.createTextNode(TagLine);
   var NoteText = document.createTextNode(Note);
   
   document.getElementById('txtBody').appendChild(BodyText);
   document.getElementById('txtTagLine').appendChild(TagLineText);
   document.getElementById('txtNote').appendChild(NoteText);
}

