// JavaScript Document



//START QUOTES
var textnumber = 3 ; 
var randomnumber = Math.random() ; 
var rand = Math.round( (textnumber-1) * randomnumber) + 1 ; 
text = new Array 

text[1] = '<p><em>Tanya is a firecracker of energy and an absolute gold mine of informative tips, tricks and valuable information! I gained much more than I had expected from our time together. I had several questions to ask in order to take up the half hour... thinking that I would get one-liner answers to my two or three main concerns. However, to my amazement and delight she not only answered the questions directly but gave me the whys and wherefores to go along with the answers. She is one treasure trove of valuable insightfulness and experience! My half hour quickly turned into an hour session.</em><br /> ...Thanks again! Susan Mason </p>';
text[2] = '<p><em>Thank you for all your kind words and for pushing us out of the nest so we can spread our wings and fly. You are an inspiration, and someone that everyone can be proud of. May joy always be in your life. So be it! </em><br /> Rev. Gary L. Gill</p>';

text[3] = '<p><em>Thanks for the wonderful 2 days that you spent with me. The training I received will be invaluable to me. You did a fantastic job!!!! You are not only a great teacher, but a really great communicator. </em><br />David Leatherman</p>';

var mytext = text[rand];
//END QUOTES



function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
