/*var theHandle3, theRoot3, theThumb3, theScroll3;
		var thumbTravel3, ratio3;
		
		var inter3;
		
		
		theScroll3 = new ypSimpleScroll("scroll3", 0, 0, 583, 230,1);
		function initscroll3() {
			//theHandle = document.getElementById("handle");
			theThumb3  = document.getElementById("thumb3");
			theRoot3   = document.getElementById("root3");

			theScroll3.load();
			
			//alert("docH="+theScroll3.docH+",   "+"scrollH="+theScroll3.scrollH+",    "+"clipH="+theScroll3.clipH)
			
			if (theScroll3.scrollH<=0){
				document.getElementById("thumb3").style.visibility="hidden";
				document.getElementById("frecciasu3").style.cursor="default";
				document.getElementById("frecciagiu3").style.cursor="default";
				
			}else{
				document.getElementById("thumb3").style.visibility="visible";
				document.getElementById("frecciasu3").style.cursor="pointer";
				document.getElementById("frecciagiu3").style.cursor="pointer";
			}
			
			Drag.init(theThumb3, null, 525, 525, 20,247);

			// the number of pixels the thumb can travel vertically (max - min)
			thumbTravel3 = theThumb3.maxY - theThumb3.minY;

			// the ratio between scroller movement and thumbMovement
			ratio3 = theScroll3.scrollH / thumbTravel3;

			theThumb3.onDrag = function(x, y) {
				theScroll3.jumpTo(null,Math.round((y - theThumb3.minY) * ratio3));
			}
		}
	
	
	function startScroll3(h)
	{
		if (theScroll3.scrollH<=200){
			inter3 = window.setInterval("scrolla3("+h*40+")",1);
		}else{
			inter3 = window.setInterval("scrolla3("+h+")",1);
		}
	}
	
	function stopScroll3()
	{
		window.clearInterval(inter3);
	}
	
	function scrolla3(h){
		var y = String(theThumb3.root.style.top).toLowerCase().replace("px","");
		y = parseInt(y);
		var step = h*ratio3;
		y = y+step;
		
		if(y < theThumb3.minY)
			y = theThumb3.minY;
		
		if(y > theThumb3.maxY)
			y = theThumb3.maxY;
		
		theThumb3.root.style.top = y+"px";
		theScroll3.jumpTo(null, Math.round((y - theThumb3.minY) * ratio3));
	}
	
*/