// Scrollers width here (in pixels)
var scrollerwidth="200px"
// Scrollers height here
var scrollerheight="180px"
// Scrollers speed here (larger is faster 1-10)
var scrollerspeed=1
// Scrollers content goes here! Keep all of the message on the same line!
var scrollercontent='新年快乐!
各位玩家
扑克770 送给所有新注册玩家 $7.70+100%注册金红包!
很多新的市场推广活动正在进行:
情人节比赛活动可赢威尼斯周末双人游,尽享浪漫之旅.
Hight Roller Monday比赛提供$50,000封顶奖金,机不可失!
想赢取$100,000现金吗?
参加1月份奥码哈现金牌桌吧!
2百万美元的封顶奖金依然等你赢取!
还有更多的活动详情进入我们的活动推广页.
想成为下一位幸运玩家,快来参加扑克770种类繁多的比赛吧!'
var pauseit=1
// Change nothing below!
scrollerspeed=(document.all)? scrollerspeed : Math.max(1, scrollerspeed-1) //slow speed
var copyspeed=scrollerspeed
var iedom=document.all||document.getElementById
var actualheight=''
var cross_scroller, ns_scroller
var pausespeed=(pauseit==0)? copyspeed: 0
function populate() {
if (iedom){
cross_scroller=document.getElementById? document.getElementById("iescroller") : document.all.iescroller
if (cross_scroller) {
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
cross_scroller.innerHTML=scrollercontent
actualheight=cross_scroller.offsetHeight
lefttime=setInterval("scrollscroller()",40)
}
} else if (document.layers) {
ns_scroller=document.ns_scroller.document.ns_scroller2
if (ns_scroller) {
ns_scroller.top=parseInt(scrollerheight)+8
ns_scroller.document.write(scrollercontent)
ns_scroller.document.close()
actualheight=ns_scroller.document.height
lefttime=setInterval("scrollscroller()",40)
}
}
}
//window.onload=populate
function scrollscroller() {
if (iedom) {
if (parseInt(cross_scroller.style.top)>(actualheight*(-1)+8))
cross_scroller.style.top=parseInt(cross_scroller.style.top)-copyspeed+"px"
else
cross_scroller.style.top=parseInt(scrollerheight)+8+"px"
} else if (document.layers){
if (ns_scroller.top>(actualheight*(-1)+8))
ns_scroller.top-=copyspeed
else
ns_scroller.top=parseInt(scrollerheight)+8
}
}