var arr_my_list2 = new Array()
arr_my_list2[1] = "&quot;You have a great selection, and your website is really easy to use. I also appreciate the low prices and satisfaction guarantee. I&#39;m going to email all of my friends about your website. Thanks again!&quot;<br> <b>-J. Green, Austin, TX</b>"
arr_my_list2[2] = "&quot;I must commend you on your excellent response time. When I contacted you with a question your willingness to make sure I got what was right for my needs was really appreciated. My experience with other web sites has been frustrating to say the least, but you have made this whole process easy!&nbsp; I will be certain to recommend you to any of my friends or colleagues who have need of security products.&quot;<br><b>- P. Bernard, Bremerton, WA</b>"

function WriteTestimonial2() 
{  var num = arr_my_list2.length - 1;
   var randnum = Math.random();
   rand1 = Math.round((num - 1) * randnum) + 1;
   document.write(arr_my_list2[rand1])
}
