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

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

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

function ScrollInit2() {
   	if (document.getElementById) {
        	cnt2 = document.getElementById("cont2");
        	txt2 = document.getElementById("text2");
        	txt2.style.top = 0;
    	}
}