function div_navegar(pefixo,n){
	var n_aux = 1;
	while(n_aux>0){
		if(!document.getElementById(pefixo+n_aux)){
			n_aux=0;
		}else{
			var myDiv = document.getElementById(pefixo+n_aux);	
			/*myDiv.width = 0;
			myDiv.height = 0;*/
			myDiv.style.display = 'none';
			//myDiv.setAttribute('class','');
			n_aux++;
		}
	}
	if(document.getElementById(pefixo+n)){
		var myDiv=document.getElementById(pefixo+n);
		//myDiv.setAttribute('class','table');
		myDiv.style.display = 'block';
	}
	window.location ='#topo';
}

