<!-- 
//////
// Parametrización de este árbol

// Target por defecto donde se cargarán las páginas. Cada LINK podrá definir uno específico
defaultTargetFrame = 'contenido';

// Ubicación de las imágenes
img_abierto = '/includes/ind00_abierto.gif'
img_cerrado = '/includes/ind00_cerrado.gif'
img_link    = '/includes/ind00_link.gif'
img_blank   = '/includes/img_nula.gif'

// Objetos y apoyos visuales
img_resaltar = '<img border="0" src="../images/bola_roja_crece.gif" width="15" height="15">'

//////
// arbol() - Llamada al cargarse los marcos. Genera los datos del árbol y luego lo pinta

function arbol() {
	loadDataArbol();
	drawTree();
}

//////
// loadDataArbol() - Aquí van los datos y variables del árbol

function loadDataArbol() {

	treeData = new Collection();
	
	treeData.add(new RootNode('root','','blank.htm',''));

	treeData.add(new LinkNode('root','Accueil', 'portada.htm',''));
	treeData.add(new LinkNode('root','La nouvelle Équipe','cronica_nuevo_equipo.php',''));
	treeData.add(new LinkNode('root','Télécharges', '../down',''));
	
	treeData.add(new FolderNode('documentos', 'root', 'Documents Assemblée'));
	treeData.add(new LinkNode('documentos','Synthèse', 'sintesis.php',''));
	treeData.add(new LinkNode('documentos','Lignes action', 'lineas_accion.php',''));

	treeData.add(new FolderNode('cronicas', 'root', 'Chroniques'));
	treeData.add(new LinkNode('cronicas','27 Déc', 'cronica_d27.htm',''));
	treeData.add(new LinkNode('cronicas','28 Déc', 'cronica_d28.htm',''));
	treeData.add(new LinkNode('cronicas','29 Déc', 'cronica_d29.htm',''));
	treeData.add(new LinkNode('cronicas','30 Déc', 'cronica_d30.htm',''));

	treeData.add(new FolderNode('conferencias', 'root', 'Conférences'));
	treeData.add(new LinkNode('conferencias','P.Gregory Gay','conf_pgay.htm',''));
	treeData.add(new LinkNode('conferencias','S.Evelyne Franc','conf_sevelyne.htm',''));

	treeData.add(new FolderNode('fotos', 'root', 'Photos'));
	treeData.add(new LinkNode('fotos','26 Déc', '../galerias/dia26/thumb.html',''));
	treeData.add(new LinkNode('fotos','27 Déc', '../galerias/dia27/thumb.html',''));
	treeData.add(new LinkNode('fotos','28 Déc', '../galerias/dia28/thumb.html',''));
	treeData.add(new LinkNode('fotos','29 Déc', '../galerias/dia29/thumb.html',''));
	treeData.add(new LinkNode('fotos','30 Déc', '../galerias/dia30/thumb.html',''));
	treeData.add(new LinkNode('fotos','Personnes', '../galerias/personas/thumb.html',''));
	
	treeData.add(new FolderNode('previo', 'root', 'Préparation'));
	treeData.add(new LinkNode('previo','Convocation', 'http://www.misevi.org/enc/modules.php?name=News&file=print&sid=25','_blank'));
	treeData.add(new LinkNode('previo','Circulaire -2-', 'http://www.misevi.org/enc/modules.php?name=News&file=print&sid=31','_blank'));

//	treeData.add(new FolderNode('prepar', 'root', 'Documentos relacionados'));
//	treeData.add(new LinkNode('prepar','Estatutos Internacionales', '../../docs_web/esp/estatutos.htm','_blank'));
//	treeData.add(new LinkNode('prepar','Asamblea 2001: Doc. Final', '../../asamblea2001/esp/doc_final.htm',''));
//	treeData.add(new LinkNode('prepar','M I S E V I', '../../docs_web/esp/art/misevi_qes/misevi_qes_total.htm','_blank'));


}

/////
// drawTree() - Pintado del árbol: 
//   1.- Fondo, estilos, etc.
//   2.- Elementos por encima del árbol (opcional)
//   3.- Nodo raiz, y luego ramas subordinadas
//   4.- Elementos por debajo del árbol (opcional)

function drawTree() {
	outputFrame = self.indice.window.document;
	outputFrame.open("text/html");

	outputFrame.write("<HTML>\n<HEAD>\n<STYLE>\n");

	outputFrame.write("BODY {background-color: #FFCC99; background-image: url(\"/images/bgnaranjadegrad.jpg\"); background-attachment: fixed; }\n");
	outputFrame.write("A         {font-family: Arial, 'Sans Serif'; font-size: 12px; color: #000000}\n");
	outputFrame.write("A:link    {text-decoration: none; color: #000000}\n");
	outputFrame.write("A:visited {text-decoration: none; color: #000000}\n");
	outputFrame.write("A:hover   {text-decoration: underline; font-weight: bold}\n");
	outputFrame.write("A:active  {color: #FF0000}\n");
	outputFrame.write("IMG {border: 0}\n");

	outputFrame.write("</STYLE>\n</HEAD>\n");

	outputFrame.write("<BODY>\n<NOBR>");

	outputFrame.write("<CENTER><TABLE WIDTH=100% BORDER=2 CELLPADDING=0 BORDERCOLOR=#FFFF99>");
	outputFrame.write("<TR><TD BGCOLOR=#FFFF99 align=\"center\">Assamblée 2005</TD></TR><TR><TD>");
	drawBranch("root","");

	outputFrame.write("</TD></TR></TABLE></CENTER>");


	outputFrame.write("</NOBR>\n</BODY>\n</HTML>");
	outputFrame.close();
}

// -->
