function showDiv(elemento, mensaje){
	var obj = document.getElementById(elemento);
   		    obj.style.display = 'block'
			$(elemento).update(mensaje);

}
