<!-- Begin Hiding


function start() {
	loadData();
	drawTree();
}

function drawTree() {
	outputFrame = top.cos.window.document;
	outputFrame.open("text/html");

	outputFrame.write("<HTML>");
	outputFrame.write('<head><link REL="StyleSheet" HREF="tree.css" TYPE="text/css" MEDIA="screen"></head>');
	outputFrame.write("\n<BODY>\n");
	outputFrame.write(prefixHTML + "\n<NOBR>\n");
	if (treeData[1].target == "") {var targetFrame = defaultTargetFrame} else {var targetFrame = treeData[1].target}
	if (treeData[1].icon == "") {var imageString = defaultImageURL + 'img-globe-' + structureStyle + '.gif'} else {imageString = defaultImageURL + treeData[1].icon}
	outputFrame.write("<IMG SRC='" + imageString + "' WIDTH=16 HEIGHT=16 ALIGN=TEXTTOP BORDER=0 ALT='" + treeData[1].url + "'></A>&nbsp;<span class='titular'>" + treeData[1].name + "</span><BR>\n");

	drawBranch("root","");
	outputFrame.write("</NOBR>\n" + suffixHTML + "\n");
	outputFrame.write("</FONT>\n</BODY>\n</HTML>");
	outputFrame.close();
	window.status="Colegio Revista Enfermeria Integral";
}


function drawBranch(startNode,structureString) {
	var children = extractChildrenOf(startNode);
	var currentIndex = 1;
	while (currentIndex <= children.length) {
		outputFrame.write(structureString);
		if (children[currentIndex].type == 'link') {
			if (children[currentIndex].icon == "") {
				var imageString = defaultImageURL + defaultLinkIcon;
			}
			else {var imageString = defaultImageURL + children[currentIndex].icon}
			if (children[currentIndex].target == "") {
				var targetFrame = defaultTargetFrame;
			}
			else {var targetFrame = children[currentIndex].target}
			if (currentIndex != children.length) {
				outputFrame.write("<IMG SRC='" + defaultImageURL + "img-branch-cont-" + structureStyle + ".gif' WIDTH=19 HEIGHT=16 ALIGN=TEXTTOP>")
			}
			else {
				outputFrame.write("<IMG SRC='" + defaultImageURL + "img-branch-end-" + structureStyle + ".gif' WIDTH=19 HEIGHT=16 ALIGN=TEXTTOP>")
			}
			outputFrame.write("<A HREF='" + children[currentIndex].url + "' TARGET='" + targetFrame + "' onMouseOver=\"window.status='" + children[currentIndex].url + "'; return true\"><IMG SRC='" + imageString + "' WIDTH=16 HEIGHT=16 ALIGN=TEXTTOP BORDER=0 ALT='" + children[currentIndex].url + "'>&nbsp;<span class='document'>" + children[currentIndex].name + "</span></A><BR>\n")	
		}
		else {
			var newStructure = structureString;
			if (children[currentIndex].iconClosed == "") {var iconClosed = "img-folder-closed-" + structureStyle + ".gif"} else {var iconClosed = children[currentIndex].iconClosed}
			if (children[currentIndex].iconOpen == "") {var iconOpen = "img-folder-open-" + structureStyle + ".gif"} else {var iconOpen = children[currentIndex].iconOpen}
			if (currentIndex != children.length) {
				if (children[currentIndex].open == 0) {
					outputFrame.write("<A HREF=\"javascript:top.toggleFolder('" + children[currentIndex].id + "',1)\" onMouseOver=\"window.status='Click to open this folder'; return true\"><IMG SRC='" + defaultImageURL + "img-plus-cont-" + structureStyle + ".gif' WIDTH=19 HEIGHT=16 ALT='Click para abrir la carpeta' ALIGN=TEXTTOP BORDER=0>")
					outputFrame.write("<IMG SRC='" + defaultImageURL + iconClosed + "' WIDTH=16 HEIGHT=16 ALT='Click to open this folder' ALIGN=TEXTTOP BORDER=0>&nbsp;<span class=carpeta>" + children[currentIndex].name + "</span></A><BR>\n")
				}
				else {
					outputFrame.write("<A HREF=\"javascript:top.toggleFolder('" + children[currentIndex].id + "',0)\" onMouseOver=\"window.status='Click to close this folder'; return true\"><IMG SRC='" + defaultImageURL + "img-minus-cont-" + structureStyle + ".gif' WIDTH=19 HEIGHT=16 ALT='Click para abrir la carpeta' ALIGN=TEXTTOP BORDER=0>");
					outputFrame.write("<IMG SRC='" + defaultImageURL + iconOpen + "' WIDTH=16 HEIGHT=16 ALT='Click to close this folder' ALIGN=TEXTTOP BORDER=0>&nbsp;<span class=carpeta>" + children[currentIndex].name + "</span></A><BR>\n");
					newStructure = newStructure + "<IMG SRC='" + defaultImageURL + "img-vert-line-" + structureStyle + ".gif' WIDTH=19 HEIGHT=16 ALIGN=TEXTTOP>";
					drawBranch(children[currentIndex].id,newStructure); 
				}
			}
			else {
				if (children[currentIndex].open == 0) {
					outputFrame.write("<A HREF=\"javascript:top.toggleFolder('" + children[currentIndex].id + "',1)\" onMouseOver=\"window.status='Click to open this folder'; return true\"><IMG SRC='" + defaultImageURL + "img-plus-end-" + structureStyle + ".gif' WIDTH=19 HEIGHT=16 ALT='Click para cerrar la carpeta' ALIGN=TEXTTOP BORDER=0>")
					outputFrame.write("<IMG SRC='" + defaultImageURL + iconClosed + "' WIDTH=16 HEIGHT=16 ALT='Click to open this folder' ALIGN=TEXTTOP BORDER=0>&nbsp;<span class=carpeta>" + children[currentIndex].name + "</span></A><BR>\n")
				}
				else {
					outputFrame.write("<A HREF=\"javascript:top.toggleFolder('" + children[currentIndex].id + "',0)\" onMouseOver=\"window.status='Click to close this folder'; return true\"><IMG SRC='" + defaultImageURL + "img-minus-end-" + structureStyle + ".gif' WIDTH=19 HEIGHT=16 ALT='Click para cerrar la carpeta' ALIGN=TEXTTOP BORDER=0>");
					outputFrame.write("<IMG SRC='" + defaultImageURL + iconOpen + "' WIDTH=16 HEIGHT=16 ALT='Click to close this folder' ALIGN=TEXTTOP BORDER=0>&nbsp;<span class=carpeta>" + children[currentIndex].name + "</span></A><BR>\n");
					newStructure = newStructure + "<IMG SRC='" + defaultImageURL + "img-blank.gif' WIDTH=19 HEIGHT=16 ALIGN=TEXTTOP>";
					drawBranch(children[currentIndex].id,newStructure); 
				}
			}
		}
		currentIndex++;
	}
}


function toggleFolder(id,status) {
	var nodeIndex = indexOfNode(id); 
	treeData[nodeIndex].open = status; 
	timeOutId = setTimeout("drawTree()",100)}


function indexOfNode(id) {
	var currentIndex = 1;
	while (currentIndex <= treeData.length) {
		if ((treeData[currentIndex].type == 'root') || (treeData[currentIndex].type == 'folder')) {
			if (treeData[currentIndex].id == id) {return currentIndex}} 
		currentIndex++} 
	return -1}

function extractChildrenOf(node) {
	var children = new Collection();
	var currentIndex = 1; 
	while (currentIndex <= treeData.length) {
		if ((treeData[currentIndex].type == 'folder') || (treeData[currentIndex].type == 'link')) {
			if (treeData[currentIndex].parent == node) {
				children.add(treeData[currentIndex])}}
		currentIndex++} 
	return children}


function Collection() {
	this.length = 0; 
	this.add = add; 
	return this}


function add(object) {
	this.length++; 
	this[this.length] = object}


function RootNode(id,name,url,target,icon) {
	this.id = id;
	this.name = name;
	this.url = url;
	this.target = target;
	this.icon = icon;
	this.type = 'root';
	return this}


function FolderNode(id,parent,name,iconClosed,iconOpen) {
	this.id = id;
	this.parent = parent;
	this.name = name;
	this.iconClosed = iconClosed;
	this.iconOpen = iconOpen;
	this.type = 'folder';
	this.open = 0;
	return this}


function LinkNode(parent,name,url,target,icon) {
	this.parent = parent;
	this.name = name;
	this.url = url;
	this.target = target;
	this.icon = icon;
	this.type = 'link';
	return this}


function loadData() {

	treeData = null;
	treeData = new Collection();

	treeData.add(new RootNode('root','Colegio','','',''));      // Root Node MUST be first!
 	  treeData.add(new FolderNode('1999','root','A&ntilde;o 1999','',''));
 	  	treeData.add(new FolderNode('rev48','1999','Primer trimestre (revista 48)','',''));
   	    treeData.add(new LinkNode('rev48','Editorial','./resto/colegio1.htm#Editorial','',''));
   	    treeData.add(new LinkNode('rev48','La p&aacute;gina web del colegio','./resto/colegio1.htm#laweb','',''));
   	    treeData.add(new LinkNode('rev48','Sociedad de Enfermer&iacute;a en Salud Laboral','./resto/colegio1.htm#socienferm','',''));
   	    treeData.add(new LinkNode('rev48','Gu&iacute;a de Servicios del Colegio','./resto/colegio1.htm#guia','',''));
   	    treeData.add(new LinkNode('rev48','Asociaci&oacute;n de Jubilados y Pensionistas','./resto/colegio2.htm#jubil','',''));
   	    treeData.add(new LinkNode('rev48','Viaje a la Manga del Mar Menor','./resto/colegio2.htm#manga','',''));
   	    treeData.add(new LinkNode('rev48','Asociaci&oacute;n Brahma Kumari','./resto/colegio2.htm#kumaris','',''));
 	  	treeData.add(new FolderNode('rev51','1999','Cuarto trimestre (revista 51)','',''));
   	    treeData.add(new LinkNode('rev51','Editorial','./resto/colegio3.htm#7','',''));
   	    treeData.add(new LinkNode('rev51','Vocal&iacute;a Matronas','./resto/colegio3.htm#1','',''));
   	    treeData.add(new LinkNode('rev51','Entrega de diplomas a la 1ª Promoci&oacute;n de Enfermeros en Salud Laboral','./resto/colegio3.htm#2','',''));
   	    treeData.add(new LinkNode('rev51','Asociaci&oacute;n de Jubilados y Pensionistas','./resto/colegio3.htm#3','',''));
   	    treeData.add(new LinkNode('rev51','Convocatoria Asamblea General','./resto/colegio3.htm#4','',''));
   	    treeData.add(new LinkNode('rev51','Recurso','./resto/colegio3.htm#5','',''));
   	    treeData.add(new LinkNode('rev51','El Consejo General de Madrid carece de competencias para inhabilitar al Presidente del Colegio de Valencia.','./resto/colegio3.htm#6','',''));
   	    treeData.add(new LinkNode('rev51','Memoria 1999','memoria1999.htm','',''));
 	  treeData.add(new FolderNode('2000','root','A&ntilde;o 2000','',''));
 	  	treeData.add(new FolderNode('rev52','2000','Primer trimestre (revista 52)','',''));
   	    treeData.add(new LinkNode('rev52','Editorial','./resto/colegio4.htm#1','',''));
   	    treeData.add(new LinkNode('rev52','Vocal&iacute;a Matronas: Lactancia Materna','./resto/colegio4.htm#2','',''));
   	    treeData.add(new LinkNode('rev52','Fiesta en honor del Patr&oacute;n de la Enfermer&iacute;a','./resto/colegio4.htm#3','',''));
   	    treeData.add(new LinkNode('rev52','Jes&uacute;s S&aacute;nchez Martos nombrado Colegiado de Honor del Colegio de Enfermer&iacute;a de Valencia','./resto/colegio4.htm#4','',''));
   	    treeData.add(new LinkNode('rev52','HOMENAJE a D. Francisco Torres G&oacute;mez tras su Jubilaci&oacute;n','./resto/colegio4.htm#5','',''));
   	    treeData.add(new LinkNode('rev52','Los empleados Interinos de la Administraci&oacute;n P&uacute;blica Valenciana se agrupan','./resto/colegio4.htm#6','',''));
   	    treeData.add(new LinkNode('rev52','Acte de presentaci&oacute; de la Societat Valenciana de Ci&egrave;ncies de la Salut Joan Baptiste Peset','./resto/colegio4.htm#7','',''));
   	    treeData.add(new LinkNode('rev52','Sab&iacute;as que... La cerveza puede incluirse en las dietas equilibradas','./resto/colegio4.htm#8','',''));
   	    treeData.add(new LinkNode('rev52','Sab&iacute;as que... La Uni&oacute;n Europea contempla por primera vez la Salud P&uacute;blica','./resto/colegio4.htm#9','',''));
   	    treeData.add(new LinkNode('rev52','Sab&iacute;as que... El 40 por ciento de los enfermos de tuberculosis tienen menos de 30 a&ntilde;os','./resto/colegio4.htm#10','',''));
   	    treeData.add(new LinkNode('rev52','Sab&iacute;as que... La reducci&oacute;n del consumo de grasas y el aumento de hidratos de carbono facilita la p&eacute;rdida de peso','./resto/colegio4.htm#11','',''));
   	    treeData.add(new LinkNode('rev52','Sab&iacute;as que... El Consejo de Europa dirige una recomendaci&oacute;n a todos los Estados miembros para mejorar los sistemas sanitarios','./resto/colegio4.htm#12','',''));
   	    treeData.add(new LinkNode('rev52','Sab&iacute;as que... Campa&ntilde;a Venezuela Ayuda Ya','./resto/colegio4.htm#13','',''));
   	    treeData.add(new LinkNode('rev52','Manual de Enfermer&iacute;a Radiol&oacute;gica','./resto/colegio4.htm#14','',''));
   	  treeData.add(new FolderNode('rev53','2000','Segundo trimestre (revista 53)','',''));
   	    treeData.add(new LinkNode('rev53','Editorial','./resto/colegio53.htm#1','',''));
   	    treeData.add(new LinkNode('rev53','Proyecto de orden de acceso al T&iacute;tulo de Enfermero Especialista','./resto/colegio53.htm#2','',''));
   	    treeData.add(new LinkNode('rev53','Reflexiones Convalidaci&oacute;n Especialidad Salud Mental','./resto/colegio53.htm#3','',''));
   	    treeData.add(new LinkNode('rev53','Publicado D.O.G.V. n.º 3756 de 24-05-2000','./resto/colegio53.htm#4','',''));
   	    treeData.add(new LinkNode('rev53','Voval&iacute;a Matronas: Llega el Verano y con el...','./resto/colegio53.htm#5','',''));
   	    treeData.add(new LinkNode('rev53','Vocal&iacute;a A.P.D.: HOMENAJE a un compa&ntilde;ero A.P.D.','./resto/colegio53.htm#6','',''));
   	    treeData.add(new LinkNode('rev53','Asociación de Jubilados y Pensionistas de Enfermer&iacute;a &quot;San Juan de Dios&quot;','./resto/colegio53.htm#7','',''));
   	    treeData.add(new LinkNode('rev53','Carta de un Veterano Colegiado','./resto/colegio53.htm#8','',''));
   	    treeData.add(new LinkNode('rev53','Presentaci&oacute; de la Societat Valenciana de Ci&egrave;ncies de la Salut Joan Baptiste Peset','./resto/colegio53.htm#9','',''));
   	    treeData.add(new LinkNode('rev53','Terapias Complementarias','./resto/colegio53.htm#10','',''));
   	    treeData.add(new LinkNode('rev53','Un juzgado de lo Social reconoce el derecho al personal de cupo y zona a percibir la retribuci&oacute;n calculada sobre un m&iacute;nimo de 2.500 cartilla','./resto/colegio53.htm#11','',''));
   	  treeData.add(new FolderNode('rev54','2000','Tercer trimestre (revista 54)','',''));
   	    treeData.add(new LinkNode('rev54','Editorial','./resto/colegio54.htm#1','',''));
   	    treeData.add(new LinkNode('rev54','Asociaci&oacute;n de Jubilados y Pensionistas de Enfermer&iacute;a &quot;San Juan de Dios&quot;','./resto/colegio54.htm#2','',''));
   	    treeData.add(new LinkNode('rev54','Tabl&oacute;n de anuncios','./resto/colegio54.htm#3','',''));
   	    treeData.add(new LinkNode('rev54','Piden que se analicen las drogas antes de tomarlas','./resto/colegio54.htm#4','',''));
   	    treeData.add(new LinkNode('rev54','GENOMA HUMANO: UNA REALIDAD','./resto/colegio54.htm#5','',''));
   	    treeData.add(new LinkNode('rev54','CRUZ ROJA: nuevo logotipo','./resto/colegio54.htm#6','',''));
   	    treeData.add(new LinkNode('rev54','Cualquier dieta que no satisfaga al paladar est&aacute; abocada a fracasar','./resto/colegio54.htm#7','',''));
   	    treeData.add(new LinkNode('rev54','La alta incidencia del insomnio se debe, en gran parte, al modo de vida actual','./resto/colegio54.htm#8','',''));
   	    treeData.add(new LinkNode('rev54','Vocal&iacute;a Matronas: Y el a&ntilde;o continua...','./resto/colegio54.htm#9','',''));
   	  treeData.add(new FolderNode('rev55','2000','Cuarto trimestre (revista 55)','',''));
   	    treeData.add(new LinkNode('rev55','Editorial','./resto/colegio55.htm#1','',''));
   	    treeData.add(new LinkNode('rev55','Asociaci&oacute;n de Jubilados y Pensionistas de Enfermer&iacute;a &quot;San Juan de Dios&quot;','./resto/colegio55.htm#2','',''));
   	    treeData.add(new LinkNode('rev55','Tabl&oacute;n de anuncios','./resto/colegio55.htm#3','',''));
   	    treeData.add(new LinkNode('rev55','Vocal&iacute;a Matronas: El a&ntilde;o 2000 se acaba: &iquest;Qu&eacute; nos deparar&aacute; el 2001?','./resto/colegio55.htm#4','',''));
   	    treeData.add(new LinkNode('rev55','Los t&eacute;cnicos pierden los recursos contra la Enfermer&iacute;a','./resto/colegio55.htm#5','',''));
   	    treeData.add(new LinkNode('rev55','La elecci&oacute;n del m&eacute;dico de cabecera incluye al ATS','./resto/colegio55.htm#6','',''));
   	    treeData.add(new LinkNode('rev55','Es obligatoria la colegiaci&oacute;n aunque no se preste asistencia','./resto/colegio55.htm#7','',''));
   	    treeData.add(new LinkNode('rev55','Aviso','./resto/colegio55.htm#8','',''));
   	    treeData.add(new LinkNode('rev55','Memoria 2000','./resto/colegio55.htm#9','',''));
 	  treeData.add(new FolderNode('2001','root','A&ntilde;o 2001','',''));
 	  	treeData.add(new FolderNode('rev56','2001','Primer trimestre (revista 56)','',''));
   	    treeData.add(new LinkNode('rev56','Editorial','./resto/colegio56.htm#1','',''));
   	    treeData.add(new LinkNode('rev56','Entrevista: D. Juan Manuel Quintero Parra','./resto/colegio56.htm#2','',''));
   	    treeData.add(new LinkNode('rev56','Vocal&iacute;a Matronas: La anelgesia epidural &iquest;Responsabilidades?','./resto/colegio56.htm#3','',''));
   	    treeData.add(new LinkNode('rev56','Los tribunales dan raz&oacute;n a las matronas','./resto/colegio56.htm#4','',''));
   	    treeData.add(new LinkNode('rev56','Nota Necrol&oacute;gica','./resto/colegio56.htm#5','',''));
   	    treeData.add(new LinkNode('rev56','Salud, trabajo y medioambiente','./resto/colegio56.htm#6','',''));
   	    treeData.add(new LinkNode('rev56','Curso de T&eacute;cnico en prevenci&oacute;n de riesgos laborales','./resto/colegio56.htm#7','',''));
   	    treeData.add(new LinkNode('rev56','Asociaci&oacute;n Espa&ntilde;ola de Al&eacute;rgicos al L&aacute;tex','./resto/colegio56.htm#8','',''));
   	    treeData.add(new LinkNode('rev56','Asociaci&oacute;n de Diplomados en Enfermer&iacute;a','./resto/colegio56.htm#9','',''));
   	    treeData.add(new LinkNode('rev56','Solicitudes de Devolución por el Impuesto sobre la Renta de las Personas Físicas del año 2000 para los no obligados a declarar','./resto/colegio56.htm#10','',''));
   	    treeData.add(new LinkNode('rev56','El colegio de enfermer&iacute;a informa','./resto/colegio56.htm#11','',''));
   	    treeData.add(new LinkNode('rev56','Sentencia de funcionarios','./resto/colegio56.htm#12','',''));
   	    treeData.add(new LinkNode('rev56','Complemento especifico','./resto/colegio56.htm#13','',''));
   	    treeData.add(new LinkNode('rev56','El Supremo falla que la libre elección de médico no obliga a la enfermería a salir de su zona','./resto/colegio56.htm#14','',''));
   	    treeData.add(new LinkNode('rev56','Condena por vejar a una médico y una enfermera','./resto/colegio56.htm#15','',''));
   	    treeData.add(new LinkNode('rev56','El pobre uranio','./resto/colegio56.htm#16','',''));
   	  treeData.add(new FolderNode('rev57','2001','Segundo trimestre (revista 57)','',''));
   	    treeData.add(new LinkNode('rev57','Editorial','./resto/colegio57.htm#1','',''));
   	    treeData.add(new LinkNode('rev57','Reconocimiento del prestigio profesional de los Diplomados Universitarios por el Gobierno de la Generalitat Valenciana a trav&eacute;s de sus tablas retributivas','./resto/colegio57.htm#2','',''));
   	    treeData.add(new LinkNode('rev57','Asociaci&oacute;n de Jubilados y Pensionistas de Enfermer&iacute;a &#147;San Juan de Dios&#148;','./resto/colegio57.htm#3','',''));
   	    treeData.add(new LinkNode('rev57','Vocal&iacute;a Matronas: El tiempo pasa tan deprisa...','./resto/colegio57.htm#4','',''));
   	    treeData.add(new LinkNode('rev57','Una experiencia aleccionadora: lactancia materna.','./resto/colegio57.htm#5','',''));
   	    treeData.add(new LinkNode('rev57','Diez pasos hacia una feliz lactancia natural iniciativa Hospital Amigos de los ni&ntilde;os','./resto/colegio57.htm#6','',''));
   	    treeData.add(new LinkNode('rev57','Nuevas adquisiciones para la Biblioteca','./resto/colegio57.htm#7','',''));
   	    treeData.add(new LinkNode('rev57','Tarifa oficial de Honorarios de Festejos Taurinos','./resto/colegio57.htm#8','',''));
   	    treeData.add(new LinkNode('rev57','Convocatoria Asamblea GENERAL INFORMATIVA','./resto/colegio57.htm#9','',''));
   	    treeData.add(new LinkNode('rev57','BUSCO: &quot;socio-trabajador&quot;','./resto/colegio57.htm#10','',''));
   	    treeData.add(new LinkNode('rev57','L&#146;acord d&#146;Atenci&oacute; Continuada en Atenci&oacute; Prim&agrave;ria','./resto/colegio57.htm#11','',''));
   	    treeData.add(new LinkNode('rev57','Experiencia profesional solidaria','./resto/colegio57.htm#12','',''));
   	    treeData.add(new LinkNode('rev57','XXV Aniversario: 18.&ordf; Promoci&oacute;n A.T.S. - Nuestra se&ntilde;ora de la esperanza','./resto/colegio57.htm#13','',''));
	  treeData.add(new FolderNode('rev58','2001','Tercer trimestre (revista 58)','',''));
   	    treeData.add(new LinkNode('rev58','Editorial','./resto/colegio58.htm#1','',''));
   	    treeData.add(new LinkNode('rev58','Asociaci&oacute;n de Jubilados y Pensionistas de Enfermer&iacute;a &quot;San Juan de Dios&quot;','./resto/colegio58.htm#2','',''));
   	    treeData.add(new LinkNode('rev58','Vocal&iacute;a Matronas: Silencio estival...','./resto/colegio58.htm#3','',''));
   	    treeData.add(new LinkNode('rev58','Convocatoria Salud Mental, Matrona','./resto/colegio58.htm#4','',''));
   	    treeData.add(new LinkNode('rev58','Dejaci&oacute;n de funciones: El Supremo absuelve a un m&eacute;dico','./resto/colegio58.htm#5','',''));
   	    treeData.add(new LinkNode('rev58','Tabl&oacute;n de anuncios','./resto/colegio58.htm#6','',''));
	  treeData.add(new FolderNode('rev59','2001','Cuarto trimestre (revista 59)','',''));
   	    treeData.add(new LinkNode('rev59','Editorial','./resto/colegio59.htm#1','',''));
   	    treeData.add(new LinkNode('rev59','Vocal&iacute;a Matronas: De la espera al desespero pasando por la esperanza','./resto/colegio59.htm#2','',''));
   	    treeData.add(new LinkNode('rev59','Asociaci&oacute;n de Jubilados y Pensionistas de Enfermer&iacute;a &#147;San Juan de Dios&#148;: Concurso Literario','./resto/colegio59.htm#3','',''));
   	    treeData.add(new LinkNode('rev59','Asociaci&oacute;n de Jubilados y Pensionistas de Enfermer&iacute;a &#147;San Juan de Dios&#148;','./resto/colegio59.htm#4','',''));
   	    treeData.add(new LinkNode('rev59','Plan de humanizaci&oacute;n de la sanidad','./resto/colegio59.htm#5','',''));
   	    treeData.add(new LinkNode('rev59','Encuesta de opini&oacute;n','./resto/colegio59.htm#6','',''));
   	    treeData.add(new LinkNode('rev59','Memoria 2001','./resto/colegio59.htm#7','',''));
        treeData.add(new FolderNode('2002','root','A&ntilde;o 2002','',''));
 	  treeData.add(new FolderNode('rev60','2002','Primer trimestre (revista 60)','',''));
   	    treeData.add(new LinkNode('rev60','Editorial','./resto/colegio60.htm#1','',''));
   	    treeData.add(new LinkNode('rev60','Vocal&iacute;a Matronas: Comienza el segundo trimestre y...','./resto/colegio60.htm#2','',''));
   	    treeData.add(new LinkNode('rev60','Asociaci&oacute;n Espa&ntilde;ola de Diplomados en Enfermer&iacute;a Especialistas en An&aacute;lisis Cl&iacute;nicos','./resto/colegio60.htm#3','',''));
   	    treeData.add(new LinkNode('rev60','Federaci&oacute; d&acute;Espina B&iacute;fida i Hidrocef&agrave;lia','./resto/colegio60.htm#4','',''));
   	    treeData.add(new LinkNode('rev60','Tarifa de Honorarios Orientativos','./resto/colegio60.htm#5','',''));
   	    treeData.add(new LinkNode('rev60','Carta de reclamaci&oacute;n a correos','./resto/colegio60.htm#6','',''));
   	    treeData.add(new LinkNode('rev60','XXV Aniversario Promoci&oacute;n 74-77','./resto/colegio60.htm#7','',''));
   	    
   	   
       structureStyle = 0;                  


       defaultTargetFrame = 'cos';      
       defaultImageURL = './images/tree/';

       defaultLinkIcon = 'img-page-globe.gif';


txt = '';
txt +='<table border="0" width="98%" cellspacing="0" cellpadding="0" background="./images/t03.gif">'
txt +='<tr><td width="83%" valign="top"><a name="begin"></a><img src="./images/t01.gif" WIDTH="246" HEIGHT="51"><img src="./images/t02.jpg" align="top" WIDTH="239" HEIGHT="51"></td>'
txt +='<td valign="middle"><p align="center"><img src="./images/giravirus4.gif" WIDTH="50" HEIGHT="40"></td></tr>'
txt +='</table>'
txt +='<table border="0" width="90%" cellspacing="1">'
txt +='<tr><td width="757" valign="top" align="left" colspan="2" height="18"></td></tr>'
txt +='<tr><td width="11" valign="top" align="left" height="1"></td>'
txt +='<td width="346" valign="top" align="left" height="1">&nbsp;<img src="./images/colegtit.gif" alt="Colegio" WIDTH="171" HEIGHT="39"><font face="Arial, Futura" size="4"><strong>ÍNDICE</strong></font></td></tr>'
txt +='<tr><td width="761" valign="top" align="left" colspan="2" height="1"><hr color="#000000" align="left" width="90%" size="1"></td></tr>'
txt +='</table><blockquote>'

      prefixHTML = txt;
      suffixHTML = '<p><font face="Arial, Futura, Helvetica" size="2"><b><i>&Uacute;ltima modificaci&oacute;n: 26-Marzo-2002</i></b></font></p></blockquote>';
}

// End Hiding -->
