// JavaScript Document


//START Testimonials
var textnumber = 3 ; 
var randomnumber = Math.random() ; 
var rand1 = Math.round( (textnumber-1) * randomnumber) + 1 ; 
text = new Array;

text[1] = '<p>During the office visit, Val helped me create a simplified bookkeeping system. Preparing for tax season was a breeze this year. Her organizing and accounting assistance has been a valuable asset to my company.<br /><br /><strong>Dennis - Garden Pro Landscape Services</strong><br />www.gardenprowhistler.com';
text[2] = '<p>I experienced that having Val in my office made my life more organized, especially during tax season. She offered very patient, focused, professional support.<br /><br /><strong>Margit - Greenwood Country Inn</strong><br />www.greenwoodcountryinn.com';
text[3] = '<p>Organizing the physical office space...Val has offered solutions to keep things orderly in my home office and paperwork is filed away and easily retrieved. I highly recommend Path Clear Solutions to anyone who would benefit from assistance with business organization.<br /><br /><strong>Carla - Shelterwood Nursery</strong>';

var mytext = text[rand1];
//END Testimonials


//START QUOTES
var textnumber1 = 1 ; 
var randomnumber1 = Math.random() ; 
var rand1 = Math.round( (textnumber1) * randomnumber1) + 1 ; 
text1 = new Array 

text1[1] = '<img src="/images/header-fade.jpg" alt="" />';
text1[2] = '<img src="/images/header-fade.jpg" alt="" width="200px"/>';

var mytext1 = text1[rand1];
//END QUOTES


//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(); }
}
