<!-- 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="Formacion 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 = new Collection();

	treeData.add(new RootNode('root','Formaci&oacute;n','','','')); 
 	  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','Curso de nivelaci&oacute;n ATS a DUE','./resto/formacion1.htm','',''));
   	    treeData.add(new LinkNode('rev48',"L'Escola de Vida",'./resto/formacion1.htm#escola','',''));
   	    treeData.add(new LinkNode('rev48','VI Seminario de Discusi&oacute;n Drogalcohol','./resto/formacion1.htm#drogal','',''));
   	    treeData.add(new LinkNode('rev48','&Aacute;rea de docencia y Formaci&oacute;','./resto/formacion1.htm#docencia','',''));
   	    treeData.add(new LinkNode('rev48','Resultados Curso: Sondaje Vesical','./resto/formacion2.htm#begin','',''));
   	    treeData.add(new LinkNode('rev48','Curso sobre drogodepencias por CECOVA','./resto/formacion2.htm#cecova','',''));
   	    treeData.add(new LinkNode('rev48','Jornadas, Cursos, Congresos','./resto/formacion2.htm#jornadas','',''));
 	  	treeData.add(new FolderNode('rev51','1999','Cuarto trimestre (revista 51)','',''));
   	    treeData.add(new LinkNode('rev51','Extraordinario &eacute;xito del Curso de Oposiciones','./resto/formacion3.htm#1','',''));
   	    treeData.add(new LinkNode('rev51','Cursos de Formaci&oacute;n Postgrado','./resto/formacion3.htm#2','',''));
   	    treeData.add(new LinkNode('rev51','Programa de descentralizaci&oacute;n de actividades formativas gratuitas','./resto/formacion3.htm#3','',''));
   	    treeData.add(new LinkNode('rev51','Jornadas, Cursos, Congresos','./resto/formacion3.htm#4','',''));
 	  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','Los gerentes deber&aacute;n detallar al m&aacute;ximo la causa de la contrataci&oacute;n','./resto/formacion4.htm#1','',''));
   	    treeData.add(new LinkNode('rev52','Nuevos supuestos de despido nulo','./resto/formacion4.htm#2','',''));
   	    treeData.add(new LinkNode('rev52','Classes gratu&iuml;tes de preparaci&oacute; de Coneixements de Valenci&agrave;','./resto/formacion4.htm#3','',''));
   	    treeData.add(new LinkNode('rev52','Cursos realizados dentro del programa de descentralizaci&oacute;n de actividades formativas','./resto/formacion4.htm#4','',''));
   	    treeData.add(new LinkNode('rev52','Oferta de Cursos de Formaci&oacute;n Postgrado de la Fundaci&oacute;n de Enfermer&iacute;a Internacional','./resto/formacion4.htm#5','',''));
   	    treeData.add(new LinkNode('rev52','Jornadas, Cursos, Congresos','./resto/formacion4.htm#6','',''));
			treeData.add(new FolderNode('rev53','2000','Segundo trimestre (revista 53)','',''));
   	    treeData.add(new LinkNode('rev53','Cursos realizados dentro del programa de descentralizaci&oacute;n de actividades formativas','./resto/formacion53.htm#1','',''));
   	    treeData.add(new LinkNode('rev53','Cursos de Formaci&oacute;n Postgrado','./resto/formacion53.htm#2','',''));
   	    treeData.add(new LinkNode('rev53','Programa de Formaci&oacute;n Continuada','./resto/formacion53.htm#3','',''));
   	    treeData.add(new LinkNode('rev53','Oferta de Cursos de Formaci&oacute;n Postgrado de la Fundaci&oacute;n de Enfermer&iacute;a Internacional','./resto/formacion53.htm#5','',''));
   	    treeData.add(new LinkNode('rev53','Cursos gratuitos para colegiados','./resto/formacion53.htm#9','',''));
   	    treeData.add(new LinkNode('rev53','Cursos de Valenci&agrave;','./resto/formacion53.htm#7','',''));
   		  treeData.add(new LinkNode('rev53','Jornadas, Cursos, Congresos','./resto/formacion53.htm#6','',''));
			treeData.add(new FolderNode('rev54','2000','Tercer trimestre (revista 54)','',''));
   	    treeData.add(new LinkNode('rev54','El profesional sanitario ante la muerte','./resto/formacion54.htm#1','',''));
   	    treeData.add(new LinkNode('rev54','Curso sobre la muerte y el proceso de duelo para profesionales de Enfermer&iacute;a','./resto/formacion54.htm#2','',''));
   	    treeData.add(new LinkNode('rev54','La formaci&oacute;n de los manipuladores de alimentos: una atractiva actividad para los profesionales de Enfermer&iacute;a','./resto/formacion54.htm#3','',''));
   	    treeData.add(new LinkNode('rev54','Cursos de formaci&oacute;n Postgrado','./resto/formacion54.htm#4','',''));
   	    treeData.add(new LinkNode('rev54','Programa de formaci&oacute;n continuada, actividades formativas gratuitas &uacute;ltimo trimestre 2000 -Valencia-','./resto/formacion54.htm#5','',''));
   	    treeData.add(new LinkNode('rev54','Programa de descentralizaci&oacute;n de las actividades formativas Primer Semestre 2001','./resto/formacion54.htm#6','',''));
   	    treeData.add(new LinkNode('rev54','Diploma de Enfermer&iacute;a en Educaci&oacute;n para la Salud - 4.&ordf; EDICI&Oacute;N','./resto/formacion54.htm#7','',''));
   	    treeData.add(new LinkNode('rev54','Cursos de Valenci&agrave;','./resto/formacion54.htm#8','',''));
   	    treeData.add(new LinkNode('rev54','Oferta de Cursos de Formaci&oacute;n Postgrado de la Fundaci&oacute;n de Enfermer&iacute;a Internacional','./resto/formacion54.htm#9','',''));
   	    treeData.add(new LinkNode('rev54','Encuesta de Opini&oacute;n sobre Formaci&oacute;n Postgrado','./resto/formacion54.htm#10','',''));
   	    treeData.add(new LinkNode('rev54','Jornadas, Cursos, Congresos','./resto/formacion54.htm#11','',''));
			treeData.add(new FolderNode('rev55','2000','Cuarto trimestre (revista 55)','',''));
   	    treeData.add(new LinkNode('rev55','Especial Formaci&oacute;n Uni&oacute;n Profesional','./resto/formacion55.htm#1','',''));
   	    treeData.add(new LinkNode('rev55','Curso-taller sobre cuidados paliativos','./resto/formacion55.htm#2','',''));
   	    treeData.add(new LinkNode('rev55','Programa de descentralizaci&oacute;n de las actividades formativas gratuitas, Primer trimestre 2001','./resto/formacion55.htm#3','',''));
   	    treeData.add(new LinkNode('rev55','Postgrado Universitario en Direcci&oacute;n y Gesti&oacute;n de Residencias Geri&aacute;tricas','./resto/formacion55.htm#4','',''));
   	    treeData.add(new LinkNode('rev55','Respuesta examen de Residentes de Enfermer&iacute;a de Noviembre 2000. Matronas y Salud Mental','./resto/formacion55.htm#5','',''));
   	    treeData.add(new LinkNode('rev55','Cursos Superiores de Nivel Universitario Centro de Formaci&oacute;n Continuada Les Heures Universidad de Barcelona','./resto/formacion55.htm#6','',''));
   	    treeData.add(new LinkNode('rev55','Oferta de Cursos de Formaci&oacute;n Postgrado de la Fundaci&oacute;n de Estudios Biotecnol&oacute;gicos de la Comunidad Valenciana','./resto/formacion55.htm#7','',''));
   	    treeData.add(new LinkNode('rev55','Ofertas de Trabajo','./resto/formacion55.htm#8','',''));
   	    treeData.add(new LinkNode('rev55','Jornadas, cursos y congresos','./resto/formacion55.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','Programa de descentralizaci&oacute;n de las actividades formativas gratuitas, Primer trimestre 2001','./resto/formacion56.htm#1','',''));
   	    treeData.add(new LinkNode('rev56','Curso para operadores en instalaciones de radiodiagn&oacute;stico m&eacute;dico','./resto/formacion56.htm#2','',''));
   	    treeData.add(new LinkNode('rev56','El Colegio de Enfermer&iacute;a de Valencia en colaboraci&oacute;n con el CECOVA va a poner en marcha un curso de nuevas tecnolog&iacute;as para los colegiados','./resto/formacion56.htm#3','',''));
   	    treeData.add(new LinkNode('rev56','I Premio de Enfermer&iacute;a Comunidad Valenciana CECOVA - ST. PAUL','./resto/formacion56.htm#4','',''));
   	    treeData.add(new LinkNode('rev56','Postgrado universitario en direcci&oacute;n y gesti&oacute;n de residencias geri&aacute;tricas.','./resto/formacion56.htm#5','',''));
   	    treeData.add(new LinkNode('rev56','Curso de preparaci&oacute;n de oposiciones del a&ntilde;o 2001','./resto/formacion56.htm#6','',''));
   	    treeData.add(new LinkNode('rev56','Jornadas, cursos y congresos','./resto/formacion56.htm#7','',''));
 	treeData.add(new FolderNode('rev57','2001','Segundo trimestre (revista 57)','',''));
   	    treeData.add(new LinkNode('rev57','Programa de descentralizaci&oacute;n de la Formaci&oacute;n','./resto/formacion57.htm#1','',''));
   	    treeData.add(new LinkNode('rev57','Curso para operadores en instalaciones de radiodiagn&oacute;stico m&eacute;dico','./resto/formacion57.htm#2','',''));
   	    treeData.add(new LinkNode('rev57','El Colegio de Enfermería de Valencia en colaboración con el CECOVA va a poner en marcha un curso de nuevas tecnologías para los colegiados','./resto/formacion57.htm#3','',''));
   	    treeData.add(new LinkNode('rev57','I Premio de Enfermer&iacute;a Comunidad Valenciana CECOVA - ST. PAUL','./resto/formacion57.htm#4','',''));
   	    treeData.add(new LinkNode('rev57','Postgrado universitario en direcci&oacute;n y gesti&oacute;n de residencias geri&aacute;tricas.','./resto/formacion57.htm#5','',''));
   	    treeData.add(new LinkNode('rev57','Curso de preparaci&oacute;n de oposiciones del a&ntilde;o 2001','./resto/formacion57.htm#6','',''));
   	    treeData.add(new LinkNode('rev57','Jornadas, cursos y congresos','./resto/formacion57.htm#7','',''));
 	treeData.add(new FolderNode('rev58','2001','Tercer trimestre (revista 58)','',''));
   	    treeData.add(new LinkNode('rev58','Jornadas, cursos y congresos','./resto/formacion58.htm#1','',''));
 	treeData.add(new FolderNode('rev59','2001','Cuarto trimestre (revista 59)','',''));
   	    treeData.add(new LinkNode('rev59','Actividades formativas gratuitas: formaci&oacute;n continua','./resto/formacion59.htm#1','',''));
   	    treeData.add(new LinkNode('rev59','Postgrado a distancia de gesti&oacute;n de Atenci&oacute;n Primaria','./resto/formacion59.htm#2','',''));
   	    treeData.add(new LinkNode('rev59','Curso para la preparaci&oacute;n del examen de Oposiciones de Enfermer&iacute;a','./resto/formacion59.htm#3','',''));
   	    treeData.add(new LinkNode('rev59','Se inagura la p&aacute;gina web de la Fundaci&oacute;n de Estudios Biotecnol&oacute;gicos www.fundesbiot.es','./resto/formacion59.htm#4','',''));
   	    treeData.add(new LinkNode('rev59','Postgrado a distancia de gesti&oacute;n de Direcci&oacute;n y Gesti&oacute;n de Residencias Geri&aacute;tricas','./resto/formacion59.htm#5','',''));
   	    treeData.add(new LinkNode('rev59','Curso de iniciaci&oacute;n a la &quot;Acupuntura renovada para ATS-DE&quot;','./resto/formacion59.htm#6','',''));
   	    treeData.add(new LinkNode('rev59','&quot;Curso de Homeopat&iacute;a&quot; para A.T.S yD.U.E. de la Comunidad Valenciana','./resto/formacion59.htm#7','',''));
   	    treeData.add(new LinkNode('rev59','Jornadas, cursos y congresos','./resto/formacion59.htm#8','',''));
      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','Formaci&oacute;n Continuada - Primer Semestre 2002','./resto/formacion60.htm#1','',''));
   	    treeData.add(new LinkNode('rev60','Programa de Formaci&oacute;n Continua Gratuita - Primer Semestre 2002 ','./resto/formacion60.htm#2','',''));
   	    treeData.add(new LinkNode('rev60','Programa de Formaci&oacute;n Continua Gratuita - Matronas','./resto/formacion60.htm#3','',''));
   	    treeData.add(new LinkNode('rev60','Curso para la Preparaci&oacute;n del Examen de Oposiciones de Enfermer&iacute;a','./resto/formacion60.htm#4','',''));
   	    treeData.add(new LinkNode('rev60','Curso a Distancia de T&eacute;cnicas Sanitarias','./resto/formacion60.htm#6','',''));
   	    treeData.add(new LinkNode('rev60','Postgrado a Distancia de Gesti&oacute;n de Atenci&oacute;n Primaria','./resto/formacion60.htm#7','',''));
   	    treeData.add(new LinkNode('rev60','Postgrado a Distancia de Direcci&oacute;n y Gesti&oacute;n de Residencias Geri&aacute;tricas','./resto/formacion60.htm#8','',''));
   	    treeData.add(new LinkNode('rev60','M&aacute;ster Universitario a Distancia en Prevenci&oacute;n de Riesgos Laborales','./resto/formacion60.htm#9','',''));
   	    treeData.add(new LinkNode('rev60','Cursos Acupuntores y Terapias Alternativas','./resto/formacion60.htm#10','',''));
   	    treeData.add(new LinkNode('rev60','Programa','./resto/formacion60.htm#11','',''));

  	    
    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/formtit.gif" alt="Formacion" WIDTH="191" 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: 25-Marzo-2002</i></b></font></p></blockquote>';
}

// End Hiding -->
