function fechar(div){
	document.getElementById(div).style.display = 'none';
}

function abrir(div){
	document.getElementById(div).style.display = 'block';
}
