timerID = null;
        
function ScrollUp3(speed){
    	if(document.getElementById){
        	if(parseInt(txt3.style.top) < 0){
        		txt3.style.top = parseInt(txt3.style.top) + speed + "px";
		}
        	timerID = setTimeout("ScrollUp3("+speed+")",30)
    	}
}

function ScrollDown3(speed){
    	if(document.getElementById){                        
        	if(parseInt(txt3.style.top) > cnt3.offsetHeight - txt3.offsetHeight){ 
        		txt3.style.top = parseInt(txt3.style.top) - speed + "px";
		}
        	timerID = setTimeout("ScrollDown3("+speed+")",30)
    	}
}

function ScrollStop3(){
    	if(document.getElementById){
        	clearTimeout(timerID);
    	}
}

function ScrollInit3() {
   	if (document.getElementById) {
        	cnt3 = document.getElementById("cont3");
        	txt3 = document.getElementById("text3");
        	txt3.style.top = 0;
    	}
}