// MOSTRA/OCULTA UMA DIV
function show(div) { 
	var divq = document.getElementById(div).style;
	if (divq.display == 'none') {
		divq.display = 'block';
	}else{
		divq.display = 'none';
	}
}