function pipe_include(){
			var path = "";
			var href = document.location.href;
			var elPath = document.location.pathname;
			var s = href.split("/");
			var subSitio = s[s.length-2];
	//----------------------------------------------------------------------
	//[***MODIFICABLE***]
	// En caso de agregar un archivo más para un directorio
	// agregar en esta lista de la forma:
	//   archivo == "nombredirectorio" ||
	// respetando siempre que el ultimo elemento no lleva "||"
	// y agregar en el directorio raíz el archivo con el siguiente nombre:
	//   "nombre_subsitio.txt"
	//-----------------------------------------------------------------------
	if(subSitio == "magon" ||
	subSitio == "territorio%20indigena"){
	path = "/"+subSitio+".txt";
}
else{
	path = null;
}

//document.writeln('<img src="'+path+'" width="244" height="34">');
	if(path != null){
		document.writeln('<a id="pipe_inc" href="|'+path+'" target="_self">');
	}
}
