function showElement(id){
	elemento = document.getElementById(id);
	elemento.style.display = 'block';
}


function hideElement(id){
	elemento = document.getElementById(id);
	elemento.style.display = 'none';
}


function toggleElementDisplay(elemento){
	
	elementoObj = document.getElementById(elemento);
	
	if (elementoObj.style.display == "none")
		showElement(elemento);
	else
		hideElement(elemento);
	
}


function toggleElementDisplayByClass(elemento){
	$('.'+elemento).toggle();
}
