// JavaScript Document



//START TESTIMONIALS
var textnumber = 8 ; 
var randomnumber = Math.random() ; 
var rand1 = Math.round( (textnumber-1) * randomnumber) + 1 ; 
text = new Array 

text[1] = '<p class="text">&quot;Familiar pictures, \'things\', all looked so unfamiliar, it felt like I was seeing them for the first time. Thank you so much Kym, you did a great job.&quot;</p><p class="sign"> - Maxine - Kelowna</p>';

text[2] = '<p class="text">&quot;It is a definite benefit to have someone with this dedication to the finished product take part in assisting in preparing a property for sale. I am happy to recommend their service to other Real Estate Agents and home owners.&quot;</p>';

text[3] = '<p class="text">&quot;I have always liked my house, but now it feels more like a home.&quot;</p>';

text[4] = '<p class="text">&quot;Your expertise in grouping pieces together is wonderful and shows your experience and talent for what you do.&quot;</p>';

text[5] = '<p class="text">&quot;Thank you for your exciting redesign. You did a fabulous job. We were excited to come home and find our furnishings arranged in a new, innovative, and exciting way. Can\'t\ thank you enough!&quot;</p><p class="sign"> - Maxine - Kelowna</p>';

text[6] = '<p class="text">&quot;We have had a lot of showings and everyone said the house looks fantastic. I take my hat off to you for a job well done.&quot;</p><p class="sign"> - Randy H, Kelowna</p>'; 

text[7] = '<p class="text">&quot;In the week that it\'s been on the market, we\'ve had 4 showings and two offers!!  Needless to say, we\'re really happy about how things turned out, and we credit much of our success to your staging skills.  So ... a big thank you!!&quot;</p><p class="sign"> - Ross &amp; Sue M, Kelowna</p>'; 

text[8] = '<p class="text">&quot;I can\'t believe how many people have been coming to me and asking who I use É know you go the extra mile for your clients and I have been promoting you to my peers.&quot;</p><p class="sign"> - Gillian Krol Coldwell Banker</p>';  

var mytext = text[rand1];
//END TESTIMONIALS


//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(); }
}
