<!--
// 
var quotenumber = 7 ;
var randomnumber = Math.random() ;
var rand1 = Math.round( (quotenumber-1) * randomnumber) + 1 ;
quotes = new Array
quotes[1] = "'I am very impressed by your work.' - Marc Miller from Oregon*"
quotes[2] = "'I really appreciate your help. Your newsletter is the best one on the market.' - Guang Sun from New York*"
quotes[3] = "'Anyone using this system has to make money, but I found out real fast that you have to stick to the parameters...' - Bill Sears from Ohio*"
quotes[4] = "'I wish to express to you my sincere gratitude for all the help you gave me.' - Bill Sears from Ohio*"
quotes[5] = "'Are you a wizard, or what! I like this. This is fun.' - Bob Perry from California*"
quotes[6] = "'It's good to know that there are still a few honest people around.' - Earl Iles from Texas*"
quotes[7] = "'I wanted to thank you again for the hospitality and training earlier this week.  Your techniques and indicators are very helpful and your patience in explaining them was terrific.' - Lee Robinson from Florida*"
var quote = quotes[rand1]
// -- End Hiding Here -->