topedge = 302;  // position von oben
leftedge = 199;  // position von links
boxheight = 23;  // hoehe der Box
boxwidth = 380;  // sichbare breite der box
scrollwidth = 400; // breite die gescrollt werden soll

function scrollnews(clipleft) 
 {
if (document.layers) {  
newsDiv = document.tickerTapeLayer;
newsDiv.clip.top = 0;
newsDiv.clip.bottom = boxheight;
newsDiv.clip.left = clipleft;
newsDiv.clip.right = boxwidth + clipleft;
newsDiv.left = boxwidth - clipleft - 180;
newsDiv.top = topedge;
}
else 
{
newsDiv = tickerTapeLayer.style;
newsDiv.clip = "rect(0px "+(clipleft+boxwidth)+"px "+boxheight+"px "+clipleft+"px)";
newsDiv.pixelLeft = leftedge-clipleft;
newsDiv.pixelTop = topedge;
}
clipleft = (clipleft + 1) % (scrollwidth + boxwidth);
if (clipleft>20)
{
//alert(document.tickerTapeLayer.images[0].);
}
//document.clipping.clip.value=0;
newsDiv.visibility='visible';
setTimeout("scrollnews(" + clipleft + ")", 20);
}