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