function startTimer(where){		
		if(where=="top")			idTimer = setInterval("gotoTop()", 30);
		else									idTimer = setInterval("gotoBottom()", 30);
	}
	
	function stopTimer(){
		clearTimeout(idTimer);
	}
	
	function gotoTop(){
		document.getElementById("resuelve_med_contenido").scrollTop -= 10;
	}
	
	function gotoBottom(){
		document.getElementById("resuelve_med_contenido").scrollTop += 10;
	}