// JavaScript Document
<!--
var clipTop=0;
var clipWidth=735;
var clipBottom=335;
var topper=20;
var lyrheight=0;
var time,amount,theTime,theHeight,DHTML;
function getObj(name){
	if(document.getElementById){
		this.obj=document.getElementById(name);
		this.style=document.getElementById(name).style;
	}
	else if(document.all){
		this.obj=document.all[name];
		this.style=document.all[name].style;
	}
}
function initScroll(){
	DHTML=(document.getElementById||document.all);
	if(!DHTML) return;
	var x=new getObj('contentscroll');
	if(document.getElementById||document.all){
		lyrheight=x.obj.offsetHeight;
		x.style.clip='rect('+clipTop+'px,'+clipWidth+'px,'+clipBottom+'px,0)';
	}
	document.getElementById("scrollcontrols").style.display="block";
}
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;
	clipBottom+=amount;
	topper-=amount;
	if(clipTop<0||clipBottom>lyrheight){
		clipTop-=amount;
		clipBottom-=amount;
		topper+=amount;
		return;
	}
	if(document.getElementById||document.all){
		clipstring='rect('+clipTop+'px,'+clipWidth+'px,'+clipBottom+'px,0)';
		thelayer.style.clip=clipstring;
		thelayer.style.top=topper+'px';
	}
	time=setTimeout('realscroll()',theTime);
}
function stopScroll(){
	if(time) clearTimeout(time);
}

function init(){
	if(document.getElementById("contentscroll")&&document.getElementById("contentscroll").offsetHeight>355) initScroll();
	return;
}
window.onload=init;
//-->