	    //Vertical Scroller v1.2- by Brian of www.ScriptAsylum.com
	    //Updated for bug fixes
	    //Visit JavaScript Kit (http://javascriptkit.com) for script
	    var boxheight = 250;
	    var boxwidth=130;
	    var speed=90;             // SPEED OF SCROLL IN MILLISECONDS (1 SECOND=1000 MILLISECONDS)..
	    var pixelstep=1;          // PIXELS "STEPS" PER REPITITION.
	    var godown=false;         // TOP TO BOTTOM=TRUE , BOTTOM TO TOP=FALSE
	
	    // DO NOT EDIT BEYOND THIS POINT
	
	    var outer,inner,elementheight,ref,refX,refY;
	
	    function getElHeight(el){
	       return (el.style.height)? parseInt(el.style.height):parseInt(el.offsetHeight);
	    }
	
	    function getPageLeft(el){
	        var x;
	        x = 0;
	        while(el.offsetParent!=null){
	           x+=el.offsetLeft;
	           el=el.offsetParent;
	        }
	        x+=el.offsetLeft;
	        return x;
	    }
	
	    function getPageTop(el){
	       var y;
	       y=0;
	       while(el.offsetParent!=null){
	           y+=el.offsetTop;
	           el=el.offsetParent;
	       }
	       y+=el.offsetTop;
	       return y;
	    }
	
	    function scrollbox(){
	       inner.style.top=parseInt(inner.style.top)+((godown)? pixelstep: -pixelstep)+'px';
	       if(godown){
	           if(parseInt(inner.style.top)>boxheight)
	               inner.style.top=-elementheight+'px';
	       }
	       else{
	           if(parseInt(inner.style.top)<2-elementheight)
	               inner.style.top=boxheight+2+'px';
	       }
	    }
	
	    window.onresize=function(){
	          outer.style.left=getPageLeft(ref)+'px';
	          outer.style.top=getPageTop(ref)+'px';
	    }
	
	    window.onload=function(){
	        outer=document.getElementById('outer');
	        inner=document.getElementById('inner');
	        ref=document.getElementById('ref');
	        elementheight=getElHeight(inner);
	        outer.style.left=getPageLeft(ref)+'px';
	        outer.style.top=getPageTop(ref)+'px';
	        inner.style.top=((godown)? -elementheight : boxheight)+'px';
	        inner.style.clip='rect(0px, '+(boxwidth-4)+'px, '+(elementheight)+'px, 0px)';
	       outer.style.visibility="visible";
	        setInterval('scrollbox()',speed);
	    }

