function scroll(tipo, id){
var m=document.getElementById(id);
    	if(tipo=="esquerda")
    		m.scrollLeft-=265;
    	if(tipo=="direita")
    		m.scrollLeft+=265;
    
	
	if(tipo=="sobe")
    m.scrollTop-=212;
    if(tipo=="desce")
    m.scrollTop+=212;}




