var textnumber = 14 ; 
var randomnumber = Math.random() ; 
var rand1 = Math.round( (textnumber-1) * randomnumber) + 1 ; 
text = new Array 
text[1] = "'Cathy helped me to look at my life according to my truth instead of from old beliefs I had about myself. That has caused a big positive shift in my world.... and as long as I remember not to make fear based decisions and have faith, all goes better. I have learned to be accountable to myself. Working with Cathy has been a wonderful and rewarding experience.'<br /> -----Terri Lewis" 
text[2] = "'I have had the privledge of working with Cathy Clark. Cathy has helped me focus on what it is that I truly desire in my life. She helped me understand and manage my time and priorities so that I could balance family time with starting a new business. Cathy is supportive, friendly and sincere. I felt extremely comfortable talking freely with her right from our first session. Thanks, Cathy!'<br />...Sandra Watts" 



var mytext = text[rand1] 

/* --------------------------------------------*/


//pop-up window function
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(); }
}
