function mostraShare(qual) {
	var obj = document.getElementById(qual);
	if(obj != null) {
		obj.style.display= ""
	}
}
function escondeShare(qual) {
	var obj = document.getElementById(qual);
	if(obj != null) {
		obj.style.display= "none"
	}
}
function escondeTodasShare() {escondeShare("boxFazerComentario");escondeShare("boxEnviarParaAmigo");}

