
var userComments = new Array();

userComments[0] = 
"<em>\"I grew rather fond of the program, and I'll miss using it<br>\
 when my final proofs are done.\"</em>&nbsp; (author, Pasadena)";

userComments[1] = 
"<em>\"I am now on my fifth index using your<br>\
excellent software and both I and my publisher have<br>\
been more than satisfied.\"</em> &nbsp;(author, Hayle, UK)";

userComments[2] = userComments[1];

userComments[3] = 
"<em>\"It works like a dream. I have never been able to<br>create an index this fast!\
 You have been a lifesaver.\"</em><br>(editor, Brussels)";

userComments[4] = 
"<em>\"I’ve examined nine different index programs and<br>yours is, without a doubt,\
 the easiest and best.\"</em><br> (author, Colorado)";

userComments[5] = 
"<em>\"Your software is certainly the furthest forward that<br>I have seen.\"</em>\
 (professional indexer, Northwich, UK)";

userComments[6] = 
"<em>\"I'm really enjoying using your software. It seems to<br>work very, very well.\"</em>&nbsp;\
 (author, Lexington, KY)";

userComments[7] = 
"<em>\"I set my personal best for indexing an academic book<br>today [...]\
 I will be recommending it to our publisher<br>for future projects.\"</em> (editor, Liguori, MO)";

userComments[8] = 
"<em>\"The TExtract application has proven<br>to be very successful for our publishing operation.\"</em><br>\
 (Operations Manager, Paraparaumu, NZ)";

userComments[9] = 
"<em>\"Given my deadline, there was no way to<br>do this manually [..].\
 Your program saved the day.\"</em><br>(publisher from Columbus, OH)";

userComments[10] = 
"<em>\"Very impressive functionality, usability, layout,<br>ease-of-use.\"</em> (professional indexer, UK)";

userComments[11] = 
"<em>\"Really loving this. You have saved me oodles of time.<br>Thank you.\"</em> &nbsp;(editor from Portland, ME)";

userComments[12] = 
"<em>\"I cannot tell you how happy I was to discover<br>your software.\"</em> &nbsp;(editor, Las Vegas)";

userComments[13] = 
"<em>\"My editor recommended it!\"</em> &nbsp;(author, Indiana, PA)";

function showRandomUserComment()
 {
	var n = 14;
	var s = Math.random().toString().substr(5,2);
	var icomm = (0+s)%n;
	
	document.write("<div class='t_content7'>" + userComments[icomm] + "</div>");

 }

