﻿

var quotations = new Array()
quotations[0] = "SkOpenHouses is a great looking and easy to use website which offers extra exposure for our customers<br />--<b>Thank you from Hallmark Realty</b> <br /><br /> As a Realtor, I have been \"selling Saskatoon\" for over 30 years.  I am a fan of SKopenhouses.ca as a tool to give Open houses proper exposure in a timely, accurate, efficient & flexible manner.  I can book open houses for a month or more on a property and give potential buyers ample opportunity to find a time to view it. Buyers don't have to wait for a paper to arrive on Friday to get info.<br /><br/> <b>Tony Bula, Realtor </b><br/><b>– Realty Executives Saskatoon</b><br /><br/> <br /><br/> Skopenhouses.ca has been a great addition to the marketing of open houses. Each open house I have done since I started using the website has been much busier!The convenience of having no deadline to book open houses makes my marketing strategies much easier and I can even add one on the same day I plan to have it.Keep up the good work at skopenhouses.ca!<br /><br /><b>Derek Morgan, Realtor</b><br/><b> – Realty Executives Saskatoon</b><br /><br /><br/><br/> I love using SKopenhouses.ca as I have the ability to manage my own open house ads on any day of the work week and have had great success with it. I think a lot of people use the internet as it is right at their fingertips and easily accessed to find open house ads without having to leave their homes! I will continue to use SKopenhouses.ca and my clients love it too! <br /><br /><b> Alana Baier, Realtor <br/> Exit Realty Saskatoon</b><br /><br/><br /><br/> I have been utilizing  SKopenhouses for the past number of months. It’s a great method of having the buying public view my homes prior to attending the open house.<br /><br /><b>John Schatz, Realtor <br/> Prudential Sask Realty</b><br /><br/><br /><br/> We have been very happy with the service that SKopenhouses provides.  It is very important for our listings to get as much exposure so that we can get a quick and strong sale for our clients. SKopenhouses.com does provide a great advertising tool for RE/MAX Boyd Godfrey Realty. A great avenue and user friendly.<br /><br /><b> Thanks, Shari Turner, Realtor <br/> RE/MAX BOYD GODFREY REALTY</b>"

function addScrollers() {
    // code each scroller as follows:
    // startScroll('id of scroller div','content of scroller');
    var x = Math.round(Math.random(quotations.length+1));
   
    startScroll('myscroller', quotations[0]);
    
}

var speed = 10; // scroll speed (bigger = faster)
var dR = false; // reverse direction
var xzing;
// Vertical Scroller Javascript
// copyright 24th September 2005, by Stephen Chapman
// permission to use this Javascript on your web page is granted
// provided that all of the code below (as well as these
// comments) is used without any alteration
var step = 2; function objWidth(obj) { if (obj.offsetWidth) return obj.offsetWidth; if (obj.clip) return obj.clip.width; return 0; } function objHeight(obj) { if (obj.offsetHeight) return obj.offsetHeight; if (obj.clip) return obj.clip.height; return 0; } function scrF(i, sH, eH) { var x = parseInt(i.top) + (dR ? step : -step); if (dR && x > sH) x = -eH; else if (x < 2 - eH) x = sH; i.top = x + 'px'; } function startScroll(sN, txt) { var scr = document.getElementById(sN); var sW = objWidth(scr) - 6; var sH = objHeight(scr); scr.innerHTML = '<div id="' + sN + 'in" style="position:absolute; left:3px; width:' + sW + ';">' + txt + '<\/div>'; var sTxt = document.getElementById(sN + 'in'); var eH = objHeight(sTxt); sTxt.style.top = (dR ? -eH : sH) + 'px'; sTxt.style.clip = 'rect(0,' + sW + 'px,' + eH + 'px,0)'; xzing=setInterval(function() { scrF(sTxt.style, sH, eH); }, 1000 / speed); }

function clean() {

    clearInterval(xzing);
}


