var arr_my_list1 = new Array()
arr_my_list1[1] = "&quot;I was delighted to receive my baton order so quickly and at the lowest price on the internet. I would definitely recommend this store to others who are looking to feel more safe and secure.&quot;<br><b>-E. Jasper, Petaluma, CA</b><br>"
arr_my_list1[2] = "&quot;Just calling to say thank you very much for your prompt and friendly service. Although I hope we never have to use it, you are our new expandable baton source, and it's been a pleasure doing business with you.&quot;<br> <b>-B. Silberman, Boston, MA </b>"

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