var clipTop = 0;
var clipWidth = 220;
var clipBottom = 50;
var topper = 20;
var lyrheight = 0;
var time,amount,theTime,theHeight,DHTML,x;
function getObj(name)
{
  if (document.getElementById)
  {
  	this.obj = document.getElementById(name);
	this.style = document.getElementById(name).style;
	this.style.visibility='visible';
  }
  else if (document.all)
  {
	this.obj = document.all[name];
	this.style = document.all[name].style;
	this.style.visibility='visible';
  }
  else if (document.layers)
  {
   	this.obj = document.layers[name];
   	this.style = document.layers[name];
	this.style.visibility='visible';
  }
}
function getObjNN4(obj,name)
{
	var x = obj.layers;
	var foundLayer;
	for (var i=0;i<x.length;i++)
	{
		if (x[i].id == name)
		 	foundLayer = x[i];
		else if (x[i].layers.length)
			var tmp = getObjNN4(x[i],name);
		if (tmp) foundLayer = tmp;
	}
	return foundLayer;
}
function init(name)
{
	DHTML = (document.getElementById || document.all || document.layers)
	if (!DHTML) return;
	var x = new getObj(name);
	if (document.layers)
	{
		lyrheight = x.style.clip.bottom;
		lyrheight += 20;
		x.style.clip.top = clipTop;
		x.style.clip.left = 0;
		x.style.clip.right = clipWidth;
		x.style.clip.bottom = clipBottom;
	}
	else if (document.getElementById || document.all)
	{
		lyrheight = x.obj.offsetHeight;

		x.style.clip = 'rect('+clipTop+' '+clipWidth+' '+clipBottom+' 0)'
	}
	scrollayer(name,1,100);	
}
function scrollayer(layername,amt,tim)
{
	if (!DHTML) return;
	thelayer = new getObj(layername);
	if (!thelayer) return;
	amount = amt;
	theTime = tim;
	realscroll();
}

function realscroll()
{
	if (!DHTML) return;
	clipTop += amount;
	topper -= amount;
	clipBottom += amount;
	if (clipTop < 0 || clipBottom > lyrheight+50)
	{
//		clipTop -= amount;
//		clipBottom -= amount;
//		topper += amount;
//		return;
 clipTop = 0;
 clipBottom = 50;
 topper = 20;

	}
	if (document.getElementById || document.all)
	{
		
		clipstring = 'rect('+clipTop+' '+clipWidth+' '+clipBottom+' 0)'
		thelayer.style.clip = clipstring;
		thelayer.style.top = topper;
	}
	else if (document.layers)
	{
		thelayer.style.clip.top = clipTop;
		thelayer.style.clip.bottom = clipBottom;
		thelayer.style.top = topper;
	}

	time = window.setTimeout('realscroll()',theTime);
	//time = window.setInterval('realscroll()',theTime);
}

function stopScroll()
{
	if (time) window.clearTimeout(time);
	
}

