//Scrollbreite;
var swidth=115

//sScrollhöhe;
var sheight=100

//Hintergrund; 
var sbcolor="#ececec"

//scroller's speed: change to your own;
var sspeed=2
var resumesspeed=sspeed

var wholemessage=''

//Scrolltext:
wholemessage='<div align="center"><b>Special Offer</b><hr size="2" color="#003366" noshade><div align="left">Combination folders<br><li type="square"><a href="angebote.asp" class="ticker">MBO K 67/4 KTL</a></li><li type="square"><a href="angebote.asp" class="ticker">MBO K 55/6 KTL</a></li><li type="square"><a href="angebote.asp" class="ticker">MBO K 52/4 KL</a></li><li type="square"><a href="angebote.asp" class="ticker">Stahl KC 78/4 KZRL</a></li><li type="square"><a href="angebote.asp" class="ticker">Stahl KC 78/4 KZ</a></li><li type="square"><a href="angebote.asp" class="ticker">Stahl KC 66/6 KTL</a></li><li type="square"><a href="angebote.asp" class="ticker">Stahl KC 56/4 KTL</a></li>Buckle plate folders<br><li type="square"><a href="angebote.asp" class="ticker">MBO T 800/442</a></li><li type="square"><a href="angebote.asp" class="ticker">MBO T 45/44x</a></li><li type="square"><a href="angebote.asp" class="ticker">MBO B 30/444</a></li><li type="square"><a href="angebote.asp" class="ticker">MBO B 26/444</a></li><li type="square"><a href="angebote.asp" class="ticker">Stahl TFU 78/642</a></li><li type="square"><a href="angebote.asp" class="ticker">Stahl TF 66/442</a></li><li type="square"><a href="angebote.asp" class="ticker">Stahl TF 66/442</a></li><li type="square"><a href="angebote.asp" class="ticker">Stahl TC 66/64</a></li><li type="square"><a href="angebote.asp" class="ticker">Stahl TD 66/44z</a></li><li type="square"><a href="angebote.asp" class="ticker">Stahl T 52/44x</a></li></div><hr size="2" color="#003366" noshade></div>'

function specialoffer(){
if (document.all) iemarquee(slider);
else if (document.getElementById){
document.getElementById("slider").style.visibility="show"
ns6marquee(document.getElementById('slider'))
}
else if(document.layers){
document.slider1.visibility="show"
ns4marquee(document.slider1.document.slider2)
}
}
function iemarquee(whichdiv){
iediv=eval(whichdiv)
iediv.innerHTML=wholemessage 
iediv.style.pixelTop=sheight
sizeup=iediv.offsetHeight
ieslide()
}
function ieslide(){
if (iediv.style.pixelTop>=sizeup*(-1)){
iediv.style.pixelTop-=sspeed
setTimeout("ieslide()",100)
}
else{
iediv.style.pixelTop=sheight
ieslide()
}
}
function ns4marquee(whichlayer){
ns4layer=eval(whichlayer)
ns4layer.document.write(wholemessage)
ns4layer.document.close()
sizeup=ns4layer.document.height
ns4layer.top-=sizeup
ns4slide()
}
function ns4slide(){
if (ns4layer.top>=sizeup*(-1)){
ns4layer.top-=sspeed
setTimeout("ns4slide()",100)
}
else{
ns4layer.top=sheight
ns4slide()
}
}
function ns6marquee(whichdiv){
ns6div=eval(whichdiv)
ns6div.innerHTML=wholemessage
ns6div.style.top=sheight
sizeup=ns6div.offsetHeight
ns6slide()
}
function ns6slide(){
if (parseInt(ns6div.style.top)>=sizeup*(-1)){
ns6div.style.top=parseInt(ns6div.style.top)-sspeed
setTimeout("ns6slide()",100)
}
else{
ns6div.style.top=sheight
ns6slide()
}
}