/* JavaScript Document
Esta funci&oacute;n se utiliza para ocultar y mostrar cierta parte del del texto
*/

function pop(document, id){
	if (document.getElementById(id).style.display == ""){
		document.getElementById(id).style.display = "none";
	}else{
	 document.getElementById(id).style.display = "";
	}
}

function popshow(document, id){
	 document.getElementById(id).style.display = "";
}

function pophide(document, id){
		document.getElementById(id).style.display = "none";
}
