<!-- Begin
/*
Cross browser marquee script II
*/


//Specify the marquee's width (in pixels)
var marqueewidth=250
//Specify the marquee's height
var marqueeheight=60
//Specify the marquee's scroll speed (larger is faster)
var speed=1.5
//Specify the marquee contents
var marqueecontents='<font face="Arial"><strong><FONT COLOR="#800000"><FONT  SIZE=2 FACE="Arial"><BR> <FONT COLOR="#FF0000">REAL ESTATE INTERNET WARNING!</FONT><BR><P><FONT COLOR="#800000"><FONT  SIZE=2 FACE="Arial">Despite advertising claims to the contrary, the internet is not an experienced Professional Realtor.<BR><P>It cannot consult, counsel, advise, have knowledge of local laws and market conditions, make judgements, "own" the result or most importantly, understand your individual goals and needs and care about you as a client.<BR><P>To obtain an accurate interpetation of the information you have received on line.....please contact us.</FONT></FONT></strong></font>'

if (document.all)
document.write('<marquee direction="up" scrollAmount='+speed+' style="width:'+marqueewidth+';height:'+marqueeheight+'">'+marqueecontents+'</marquee>')

function regenerate(){
window.location.reload()
}
function regenerate2(){
if (document.layers){
setTimeout("window.onresize=regenerate",450)
intializemarquee()
}
}

function intializemarquee(){
document.cmarquee01.document.cmarquee02.document.write(marqueecontents)
document.cmarquee01.document.cmarquee02.document.close()
thelength=document.cmarquee01.document.cmarquee02.document.height
scrollit()
}

function scrollit(){
if (document.cmarquee01.document.cmarquee02.top>=thelength*(-1)){
document.cmarquee01.document.cmarquee02.top-=speed
setTimeout("scrollit()",100)
}
else{
document.cmarquee01.document.cmarquee02.top=marqueeheight
scrollit()
}
}

window.onload=regenerate2
// End -->