function ChangeTestimonial() {
	var text_st = new Array();
	var author_st = new Array();
	text_st[0]='I settled on Tricast Mail&#8482; because of features and positive user reviews. It has worked extremely well for me. Set up was easy and I am able to go through my e-mails and read long messages.';
	text_st[1]='In the fast moving, global environment here at Sun, Tricast Mail&#8482; quickly became an essential & cost effective business tool for me. I now use my cell more for email than phone calls!';
	text_st[2]='The flash demo shows a lot, but I tried it and the software is JUST GREAT!!!! It is not just the only POP3 email client for java, but it is also the best.';
	
	author_st[0]='<strong>Barry Jacobson</strong><br/>PhD PE Vice Pres.<br/>Soil & Water<br/>Eng. Tech. Inc. US';
	author_st[1]='<strong>Peter Buchan</strong><br/>Senior IT Manager<br/>Sun Microsystems';
	author_st[2]='<strong>Zoti</strong><br/>Hungray';
	
	var l = text_st.length;
	var rnd_no = Math.round((l-1)*Math.random());
	document.getElementById('testimonial').innerHTML = "<p>"+text_st[rnd_no]+"</p>";
	document.getElementById('signature').innerHTML = "<p>"+author_st[rnd_no]+"</p>";
}
ChangeTestimonial();