// Distributed by http://www.hypergurl.com
// Scrollers width here (in pixels)
var scrollerwidth="760px"
// Scrollers height here
var scrollerheight="20px"
// Scrollers speed here (larger is faster 1-10)
var scrollerspeed=2
// Scrollers content goes here! Keep all of the message on the same line!
var scrollercontent='Top offer - Sale, Apartments - 180 sq.m., 175 000 Euro; 105 sq.m., 100 000 Euro; 78 sq.m. fully furnished - 89 700 Euro '
var pauseit=1
// Change nothing below!
scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1) //slow speed down by 1 for NS
var copyspeed=scrollerspeed
var iedom=document.all||document.getElementById
var actualwidth=''
var cross_scroller, ns_scroller
var pausespeed=(pauseit==0)? copyspeed: 1
function populate(){
if (iedom){
cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
cross_scroller.style.left=parseInt(scrollerwidth)+8+"px"
cross_scroller.innerHTML=scrollercontent
actualwidth=cross_scroller.offsetWidth
}
else if (document.layers){
ns_scroller=document.ns_scroller.document.ns_scroller2
ns_scroller.left=parseInt(scrollerwidth)+8
ns_scroller.document.write(scrollercontent)
ns_scroller.document.close()
actualwidth=ns_scroller.document.width
}
lefttime=setInterval("scrollscroller()",20)
}
window.onload=populate
function scrollscroller(){
if (iedom){
if (parseInt(cross_scroller.style.left)>(actualwidth*(-1)+8))
cross_scroller.style.left=parseInt(cross_scroller.style.left)-copyspeed+"px"
else
cross_scroller.style.left=parseInt(scrollerwidth)+8+"px"
}
else if (document.layers){
if (ns_scroller.left>(actualwidth*(-1)+8))
ns_scroller.left-=copyspeed
else
ns_scroller.left=parseInt(scrollerwidth)+8
}
}
if (iedom||document.layers){
with (document){
if (iedom){
write('
')
}
else if (document.layers){
write('')
write('')
write('')
}
}
}