﻿var testimonials = new Array() 

testimonials[0] = '<span style="font-size: small"><b>&quot;Great Class! Very well-organized.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- J. Rowland<br>&nbsp;&nbsp;&nbsp;OfficeMax</i></span>'
testimonials[1] = '<span style="font-size: small"><b>&quot;Class was excellent. I liked the fact that the information catered to what I needed and questions were encouraged.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- D. Fabrizius<br>&nbsp;&nbsp;&nbsp;BP</i></span>'
testimonials[2] = '<span style="font-size: small"><b>&quot;I liked the hands on approach. We got to try out everything as we were being taught.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- S. Nicholson<br>&nbsp;&nbsp;&nbsp;American Medical Association</i></span>'
testimonials[3] = '<span style="font-size: small"><b>&quot;I liked the training since it followed along with the training manual, so I can always go back to reference it.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- S. Salimeda<br>&nbsp;&nbsp;&nbsp;LaSalle Bank</i></span>'
testimonials[4] = '<span style="font-size: small"><b>&quot;I feel that with the instruction along with the manual, I can move forward & do the things I need to do to enhance my job.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- C. Lans<br>&nbsp;&nbsp;&nbsp;Thermos</i></span>'
testimonials[5] = '<span style="font-size: small"><b>&quot;Very interactive, and [the instructor] allowed us to dive more in depth when the subject material applied to us.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- N. Camargo<br>&nbsp;&nbsp;&nbsp;US Cellular</i></span>'
testimonials[6] = '<span style="font-size: small"><b>&quot;This class was fantastic.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- V. Silvis<br>&nbsp;&nbsp;&nbsp;Dyson</i></span>'
testimonials[7] = '<span style="font-size: small"><b>&quot; Very good. Very informative.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- R. Orick<br>&nbsp;&nbsp;&nbsp;Hitachi High Technologies America</i></span>'
testimonials[8] = '<span style="font-size: small"><b>&quot;Very helpful, this will get me in the right direction.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- N. Matuschenko<br>&nbsp;&nbsp;&nbsp;Office Depot</i></span>'
testimonials[9] = '<span style="font-size: small"><b>&quot;This class perfectly met my needs. I feel confident that I can use the skills I learned in this class starting today.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- K. Arnold<br>&nbsp;&nbsp;&nbsp;Motorola</i></span>'
testimonials[10] = '<span style="font-size: small"><b>&quot;Small class -- individual attention -- lots of patience.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- D. Moores<br>&nbsp;&nbsp;&nbsp;Argonne National Laboratory</i></span>'
testimonials[11] = '<span style="font-size: small"><b>&quot;I like the real life examples the instructor provided which made the tools provided in the software make more sense.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- R. Carlton<br>&nbsp;&nbsp;&nbsp;American Medical Association</i></span>'
testimonials[12] = '<span style="font-size: small"><b>&quot;Very exciting and great teacher. The material covered was very relevant.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- A. Carter<br>&nbsp;&nbsp;&nbsp;US Cellular</i></span>'
testimonials[13] = '<span style="font-size: small"><b>&quot;I thought the instructor was very informative and definitely knew the program very well.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- S. Doerner<br>&nbsp;&nbsp;&nbsp;Coldwell Banker</i></span>'
testimonials[14] = '<span style="font-size: small"><b>&quot;The instructor was very energetic and answered all questions professionally. I appreciated the fact that the instructor did not just read from the book, but actually presented the course with expert knowledge.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- J. Heywood<br>&nbsp;&nbsp;&nbsp;Sara Lee</i></span>'
testimonials[15] = '<span style="font-size: small"><b>&quot;Very exciting and great teacher. The material covered was very relevant.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- A. Carter<br>&nbsp;&nbsp;&nbsp;US Cellular</i></span>'
testimonials[16] = '<span style="font-size: small"><b>&quot;Good pace, confident and friendly instruction.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- D. Williams<br>&nbsp;&nbsp;&nbsp;Verizon Wireless</i></span>'
testimonials[17] = '<span style="font-size: small"><b>&quot;[The instructor] is a great guy. Very patient. Could not have asked for a better instructor.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- C. Scales<br>&nbsp;&nbsp;&nbsp;UBS Financial SVCS Inc.</i></span>'
testimonials[18] = '<span style="font-size: small"><b>&quot;The class was very informative. It went at a good pace for an intro class. The instructor was great.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- A. Dunat<br>&nbsp;&nbsp;&nbsp;Zurich North America</i></span>'
testimonials[19] = '<span style="font-size: small"><b>&quot;Great. Instructor was clear and patient.&quot;</b><br><br></span><span style="font-size: x-small"><i>-- J. Zwiebel<br>&nbsp;&nbsp;&nbsp;Worldwide Express</i></span>'

function showTest(){
var p = testimonials.length;
var whichone = Math.round(Math.random()*(p-1));	
document.write( testimonials[whichone] );
}	