var nTop = 80;  		//DIV from top pix
var nLeft = 550;  		//DIV from left pix
var nHeight = 20;  	//DIV height pix
var nWidth = 147;  		//DIV width pix
var nTotal = 100; 		//sum height pix
function Start(nCal)
{
	//NN
	if (document.layers) 
	{
		document.scrll.clip.top = nCal;
		document.scrll.clip.bottom = nCal + nHeight;
		document.scrll.clip.left = 0;
		document.scrll.clip.right = nWidth + nLeft;
		document.scrll.left = nLeft;
		document.scrll.top = nTop - nCal;
	}
	//IE
	else
	{
		strClipValue = "rect(" + nCal + "px " + (nWidth + nLeft) + "px " + (nCal + nHeight) + "px 0px)";
		scrll.style.clip = strClipValue;
		scrll.style.pixelLeft = nLeft;
		scrll.style.pixelTop = nTop - nCal;
	}
	nCal = (nCal + 1) % (nTotal + nHeight);
	if (document.layers)
	{
		document.scrll.visibility='visible';
	}
	else
	{
		scrll.style.visibility='visible';
	}
	setTimeout("Start(" + nCal + ")", 140);
}
