/**
 * Show or hides a div layer
 * @param   object   the div layer to hide or show
 * @param	object   the button to change value
 */
function toggleVisibility (obj, enlace) {
	if (obj.style.display == 'none') {
		obj.style.display = 'block';
		enlace.innerHTML = 'Cerrar';
		
	}
	else {
		obj.style.display = 'none';
		enlace.innerHTML = '[+] Información';
	}
}
