function generate(x, y) {
	var range = y - x + 1;
	return Math.floor(Math.random() * range) + x;
}
function getTest(){
	text_list = new Array(10);
	text_list[0] = '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td class="sidebarleft">"I have learned a big lesson about credit cards.  I refer people to you when I hear them talk about how far in debt they are.  Thank you from the bottom of my heart."</td></tr><tr><td align="right" class="sidebarleft">---Janice</td></tr></table>';
	text_list[1] = '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td class="sidebarleft">Thank you for your help in getting our debt down.</td></tr><tr><td align="right" class="sidebarleft">---John</td></tr></table>';
	text_list[2] = '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td class="sidebarleft">I want to thank you very much for your time and expertise in helping me to join your program.  This is the first time I\'ve really decided to do something about my debt to improve my future.</td></tr><tr><td align="right" class="sidebarleft">---Julie</td></tr></table>';
	text_list[3] = '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td class="sidebarleft">"We have found Advantage Credit Counseling to be very helpful in getting us out of debt and changing our habits.  We would recommend your agency to our friends and family." </td></tr><tr><td align="right" class="sidebarleft">---Linda and Frank</td></tr></table>';
	text_list[4] = '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td class="sidebarleft">"I recently paid off my credit cards . . . and I received superior customer service.  I could go on and on as to how well I was treated from start to finish.  I would like to thank you and your staff for continuous and excellent customer service."</td></tr><tr><td align="right" class="sidebarleft">---Marie</td></tr></table>';
	text_list[5] = '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td class="sidebarleft">Thank you to . . . Advantage . . . for helping us to get out of debt.  We could not have accomplished this goal without your help.</td></tr><tr><td align="right" class="sidebarleft">---Michael and Theresa</td></tr></table>';
	text_list[6] = '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td class="sidebarleft">"I feel more equipped to . . . become debt free thanks to the time I spent in your program."</td></tr><tr><td align="right" class="sidebarleft">---Michele</td></tr></table>';
	text_list[7] = '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td class="sidebarleft">Thank you for your letter of congratulations.  I am now debt free except for mortgage and car payments and it feels great.  I can now make plans to retire.</td></tr><tr><td align="right" class="sidebarleft">---Ruth</td></tr></table>';
	text_list[8] = '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td class="sidebarleft">This was the best thing that my husband and I have done.  We can\'t wait to be debt free.  What a big relief it will be!</td></tr><tr><td align="right" class="sidebarleft">---Sharon</td></tr></table>';
	text_list[9] = '<table border="0" width="100%" cellpadding="0" cellspacing="0"><tr><td class="sidebarleft">Thank you very much for helping me to get on track with my finances and for steering me in the right direction with future financial obligations</td></tr><tr><td align="right" class="sidebarleft">---Valerie</td></tr></table>';
	text_index = generate(0, 9);
	window.document.write(text_list[text_index]);
}
getTest();
