// JavaScript Document

	function scrollDiv(id,speed) {
		if ( objMov=document.getElementById(id) ) {
			var top = parseInt(objMov.style.top);
			if ( (speed>0) ? (top<0) : (top>parseInt(objMov.parentNode.style.height)-objMov.offsetHeight) ) 
				objMov.style.top = (top + speed) +"px";
			eval( 'tvar' + id +'= setTimeout("scrollDiv(\''+ id +'\',' + speed + ')",50)' );
			if (objSelf=scrollDiv.arguments[2]) 
				objSelf.onmouseup = objSelf.onmouseout = new Function('fx','clearTimeout(tvar' + id + ')');
		}
	}
	
	function scrollAgentur(id,speed) {
		if ( objMov=document.getElementById(id) ) {
			var top = parseInt(objMov.style.top);
			if ( (speed>0) ? (top<0) : (top>parseInt(objMov.parentNode.style.height)-objMov.offsetHeight) ) 
				objMov.style.top = (top + speed) +"px";
			eval( 'tvar' + id +'= setTimeout("scrollAgentur(\''+ id +'\',' + speed + ')",50)' );
			if (objSelf=scrollAgentur.arguments[2]) 
				objSelf.onmouseup = objSelf.onmouseout = new Function('fx','clearTimeout(tvar' + id + ')');
		}
	}