//Random Quotes
function random_quotes(){
var homedir = '/new-signup/deployed'; // no trailing slash
var quotes=new Array()
//Quotes, each on only one line
quotes[1]='<span class=bold><img src="'+homedir+'/resources/Q-left.gif" width="11" height="14">OKbridge is terrific!</span> You will enjoy, as I do, the opportunity of playing bridge from your own home. You can drop in for a hand or two, a full set, or to practice with your favorite partner.&nbsp; Or to just kibitz the top players.<img src="'+homedir+'/resources/Q-rght.gif" width="11" height="14"><br><i> — Paul Soloway, #1 ACBL Masterpoint Winner</i>'
quotes[2]='<span class=bold><img src="'+homedir+'/resources/Q-left.gif" width="11" height="14">OKbridge is an exciting club</span> in which to have a membership. I get to meet people from all over the world, play with my long-time friends even though thousands of miles separate us. Being a working person I love being able to play whenever I HAVE the time. No time constraints prevent me from enjoying a hobby I love. I can also practice for a tournament with a distant friend and be better prepared for the event when we participate because we have practiced beforehand. It is a great club and a wonderful concept. I am happy to be a member.<img src="'+homedir+'/resources/Q-rght.gif" width="11" height="14"><br> <i>— Peggy Kemf</i>'
quotes[3]='<span class=bold><img src="'+homedir+'/resources/Q-left.gif" width="11" height="14">As a visually-impaired and computer-illiterate individual</span>, when I first signed up as a member of OK Bridge, I encountered many obstacles. I repeatedly phoned in with questions and found the staff courteous, knowledgeable, and immediately able to explain how to operate out of my difficulty. My membership has been a delightful experience. I have made many global friendships with other members. Thank you for being so helpful.<img src="'+homedir+'/resources/Q-rght.gif" width="11" height="14"><br> <i>— Sidney K. Solomon</i>'
quotes[4]='<span class=bold><img src="'+homedir+'/resources/Q-left.gif" width="11" height="14">I have wanted to tell you</span> that, as a "computer know-nothing" I have to turn to many sites for help and nowhere do I get such prompt, courteous and effective help as at your help-desk. I have been a member for over 3 years now and I must have turned to you at least 30 times in the past. I do not remember an occasion when I did not get what I wanted.<img src="'+homedir+'/resources/Q-rght.gif" width="11" height="14"> <br> <i>— Pedro Gollman</i>'
quotes[5]='<span class=bold><img src="'+homedir+'/resources/Q-left.gif" width="11" height="14">Being a new subscriber</span> to OKbridge I was at a total loss. Any question and problem I had was promptly and efficiently handled by your staff. The courtesy and helpfulness I got enabled me to enjoy OKB daily and I had the privilege to make great friends all over the globe. Thanks again for having an excellent and caring staff.<img src="'+homedir+'/resources/Q-rght.gif" width="11" height="14"><br> <i>&mdash; Ursula Brooks</i>'
quotes[6]='<span class=bold><img src="'+homedir+'/resources/Q-left.gif" width="11" height="14">Bridge utopia!</span> Only on OKB can you play with or against the nicest and best bridge players in the world with instant feedback on every play and every hand. The updated software is incredible! OKbridge was obviously sent to us from bridge heaven. My OKB "friends" list now fills two columns. Many on this list I have met personally and consider to be among my very best friends.<img src="'+homedir+'/resources/Q-rght.gif" width="11" height="14"> <br> <i>— Jim Beggs</i>'
//End Quotes
var rq=Math.floor(Math.random()*quotes.length)
if (rq==0)
rq=1
document.write(quotes[rq])
}
random_quotes()