function reposicionar(){
			if (ope)
			{	SetTop("lCuerpo",-10);
			}
		}
		var canal;
		var subcanal;
		var aCanales = new Array();
		var tCanales = "";
		var resolucion;				//Se comprueba la resolucion del usuario
		var nPosLeft = 0;			//Posicion left donde debera de situarse la capa
		var nPosTop = 0;			//Posicion top donde se va a situar la capa
		var tipoFondo;				//Color de fondo de las tablas
		function objCanal(){
			this.id;
			this.posicion;
			this.texto;
			this.hijos = new Array();
			this.desplegado = 0;
			this.separador;
			this.URL;
			this.ayuda;
			this.color;
			this.icono;
		}
		function comprobar_resolucion() {
			if ((ns4) || (ns6)) {	history.go(0); }
			else { inicio(); }
		}
		function redibujar()
			{	var nObjs = aCanales.length;
				var cLink = "";
				tCanales = "";
				for (var i=0; i<=(nObjs-1);i++)
				{
					cLink = (ns4)?"n4link":"ielink";
					tipoFondo = "canales0105";
					if (aCanales[i].color == '2') {
						tipoFondo = "canales1314";
					}
					else { tipoFondo = "canales0105"; }
					if (aCanales[i].color == '3') {
						tipoFondo = "canalesWapPda";
						cLink = "Ver9RB6";
					}
					else { tipoFondo = "canales0105"; }
					if (aCanales[i].desplegado == 1) {
						cLink = (ns4)?"n4linkS":"ielinkS";				
						tipoFondo = "Seleccionado";
						iconoSel = "<td width='12' height='14'><img src='images/flecha_sel.gif' width='12' height='14' alt='' border='0'></td>";
					}
					else { iconoSel = "<td width='12' height='14'><img src='images/0.gif' width='0' height='14' alt='' border='0'></td>"; }
					if (aCanales[i].separador == '2')
					{
						tCanales += "<table  width='200' cellspacing='0' cellpadding='0' border='0'>";
						tCanales += "<tr bgcolor='#FFFFFF'><td height='10'><img src='images/0.gif' width='1' height='10' alt='' border='0'></td></tr>";
						tCanales += "</table>";
					}
					tCanales += "<table class='"+ tipoFondo +"' width='200' cellspacing='0' cellpadding='0' border='0'>";
					tCanales += "<tr>";
					tCanales += iconoSel;
					tCanales += "<td width='5'><img src='images/0.gif' width='5' height='1' alt='' border='0'></td>";
					if (aCanales[i].icono != '') {
						tCanales += "<td width='200'><a href='"+ aCanales[i].URL +"' class='"+ cLink +"'><img src='"+ aCanales[i].icono +"'  border='0'>&nbsp;"+ aCanales[i].texto +"</a></td>";
					}
					else { tCanales += "<td width='200'><a href='"+ aCanales[i].URL +"' class='"+ cLink +"'>"+ aCanales[i].texto +"</a></td>";}
					tCanales += "</tr>";
					tCanales += "<tr bgcolor='#FFFFFF'><td colspan='3' height='1'><img src='images/0.gif' width='1' height='1' alt='' border='0'></td></tr>";
					tCanales += "</table>";
					if (aCanales[i].hijos[0].id != null)
					{	if (aCanales[i].desplegado != 0)
						{ canal=i;
							var nObjsHijos = aCanales[i].hijos.length;
							for (var j=0;j<=(nObjsHijos-1);j++)
							{	tCanales += "<table width='180' cellspacing='0' cellpadding='0' border='0'>";
								tCanales += "<tr bgcolor='#FFFFFF'>";
								if ( (j == subcanal) && (i == canal) ) {
									tCanales += "<td width='12' height='16' align='right' valign='top'><img src='images/0.gif' width='1' height='3' alt='' border='0'><img src='images/0.gif' width='12' height='1' alt='' border='0'><img src='images/icono.gif' width='3' height='6' alt='' border='0'></td>";
									tCanales += "<td width='5'><img src='images/0.gif' width='5' height='1' alt='' border='0'></td>";
									tCanales += "<td width='180'><a href='"+ aCanales[i].hijos[j].URL +"' class='Ar10R00N'>"+ aCanales[i].hijos[j].texto +"</a></td>";
								}
								else {
									tCanales += "<td width='12' height='16'><img src='images/0.gif' width='12' height='1' alt='' border='0'></td>";
									tCanales += "<td width='5'><img src='images/0.gif' width='5' height='1' alt='' border='0'></td>";
									tCanales += "<td width='180'><a href='"+ aCanales[i].hijos[j].URL +"' class='Ar10R82'>"+ aCanales[i].hijos[j].texto +"</a></td>";
								}
								tCanales += "</tr>";
								tCanales += "<tr bgcolor='#FFFFFF'><td colspan='3' height='1'><img src='images/0.gif' width='1' height='2' alt='' border='0'></td></tr>";
								tCanales += "</table>";
							}
							tCanales += "<img src='images/0.gif' width='5' height='5' alt='' border='0'>";
						}
					}
				}

				ChangeLayerContent("lCanales",tCanales);
				ChangeVisibility("lCanales",1);
			}
		function deplegar(opSel, llama, elsubcanal){
			if (canal != -1 && canal != opSel)
			{	aCanales[canal].desplegado = 0;
			}
			if (aCanales[opSel].desplegado == 1)
			{
				aCanales[opSel].desplegado = 0;
			} else {
				aCanales[opSel].desplegado = 1;}
			if (opSel != llama)
			{
				subcanal = -1;
			} else {
				subcanal = elsubcanal;
			}

			redibujar();
		}
		function inicio(elcanal, elsubcanal, llama){
			if ((ns4) || (ns6))
			{	resolucion = window.innerWidth;
			} else
				{ resolucion = document.body.clientWidth; }
			nPosLeft2 = parseInt((resolucion/2),10) - 390 + nPosLeft;
			if (nPosLeft2 <=8) { nPosLeft2 = nPosLeft; }
aCanales[0] = new objCanal;
		aCanales[0].id = "CINFOR";
		aCanales[0].posicion = 0;
		aCanales[0].texto = "Cursos Informática";
		aCanales[0].desplegado = 0;
		aCanales[0].separador = "1";
		aCanales[0].color = "1";
		aCanales[0].icono ="";
		aCanales[0].URL = "ofimatica.asp?id=16&ec=0&es=0";
	aCanales[0].hijos[0] = new objCanal;
		aCanales[0].hijos[0].id = "ofa";
		aCanales[0].hijos[0].posicion = 0;
		aCanales[0].hijos[0].texto = "Ofimática Avanzada";
		aCanales[0].hijos[0].URL = "ofimatica.asp?id=16&ec=0&es=0";
		aCanales[0].hijos[0].separador = 1;
		aCanales[0].hijos[0].color = 1;
		aCanales[0].hijos[0].icono = "";
	aCanales[0].hijos[1] = new objCanal;
		aCanales[0].hijos[1].id = "Mw";
		aCanales[0].hijos[1].posicion = 1;
		aCanales[0].hijos[1].texto = "Microsoft Word";
		aCanales[0].hijos[1].URL = "ofimatica.asp?id=2&ec=0&es=1";
		aCanales[0].hijos[1].separador = 1;
		aCanales[0].hijos[1].color = 1;
		aCanales[0].hijos[1].icono = "";
	aCanales[0].hijos[2] = new objCanal;
		aCanales[0].hijos[2].id = "MwA";
		aCanales[0].hijos[2].posicion = 2;
		aCanales[0].hijos[2].texto = "Microsoft Word Avanzado";
		aCanales[0].hijos[2].URL = "ofimatica.asp?id=3&ec=0&es=2";
		aCanales[0].hijos[2].separador = 1;
		aCanales[0].hijos[2].color = 1;
		aCanales[0].hijos[2].icono = "";
	aCanales[0].hijos[3] = new objCanal;
		aCanales[0].hijos[3].id = "Me";
		aCanales[0].hijos[3].posicion = 3;
		aCanales[0].hijos[3].texto = "Microsoft Excel";
		aCanales[0].hijos[3].URL = "ofimatica.asp?id=4&ec=0&es=3";
		aCanales[0].hijos[3].separador = 1;
		aCanales[0].hijos[3].color = 1;
		aCanales[0].hijos[3].icono = "";
	aCanales[0].hijos[4] = new objCanal;
		aCanales[0].hijos[4].id = "MeA";
		aCanales[0].hijos[4].posicion = 4;
		aCanales[0].hijos[4].texto = "Microsoft Excel Avanzado";
		aCanales[0].hijos[4].URL = "ofimatica.asp?id=5&ec=0&es=4";
		aCanales[0].hijos[4].separador = 1;
		aCanales[0].hijos[4].color = 1;
		aCanales[0].hijos[4].icono = "";
	aCanales[0].hijos[5] = new objCanal;
		aCanales[0].hijos[5].id = "Ma";
		aCanales[0].hijos[5].posicion = 5;
		aCanales[0].hijos[5].texto = "Microsoft Access";
		aCanales[0].hijos[5].URL = "ofimatica.asp?id=6&ec=0&es=5";
		aCanales[0].hijos[5].separador = 1;
		aCanales[0].hijos[5].color = 1;
		aCanales[0].hijos[5].icono = "";
	aCanales[0].hijos[6] = new objCanal;
		aCanales[0].hijos[6].id = "MAA";
		aCanales[0].hijos[6].posicion = 6;
		aCanales[0].hijos[6].texto = "Microsoft Access Avanzado";
		aCanales[0].hijos[6].URL = "ofimatica.asp?id=7&ec=0&es=6";
		aCanales[0].hijos[6].separador = 1;
		aCanales[0].hijos[6].color = 1;
		aCanales[0].hijos[6].icono = "";
	aCanales[0].hijos[7] = new objCanal;
		aCanales[0].hijos[7].id = "MPW";
		aCanales[0].hijos[7].posicion = 7;
		aCanales[0].hijos[7].texto = "Microsoft PowerPoint";
		aCanales[0].hijos[7].URL = "ofimatica.asp?id=8&ec=0&es=7";
		aCanales[0].hijos[7].separador = 1;
		aCanales[0].hijos[7].color = 1;
		aCanales[0].hijos[7].icono = "";
	aCanales[0].hijos[8] = new objCanal;
		aCanales[0].hijos[8].id = "ICE";
		aCanales[0].hijos[8].posicion = 8;
		aCanales[0].hijos[8].texto = "Internet y Correo Electrónico";
		aCanales[0].hijos[8].URL = "ofimatica.asp?id=9&ec=0&es=8";
		aCanales[0].hijos[8].separador = 1;
		aCanales[0].hijos[8].color = 1;
		aCanales[0].hijos[8].icono = "";
	aCanales[0].hijos[9] = new objCanal;
		aCanales[0].hijos[9].id = "DPW";
		aCanales[0].hijos[9].posicion = 9;
		aCanales[0].hijos[9].texto = "Diseño Páginas Web";
		aCanales[0].hijos[9].URL = "ofimatica.asp?id=10&ec=0&es=9";
		aCanales[0].hijos[9].separador = 1;
		aCanales[0].hijos[9].color = 1;
		aCanales[0].hijos[9].icono = "";
	aCanales[0].hijos[10] = new objCanal;
		aCanales[0].hijos[10].id = "DPWa";
		aCanales[0].hijos[10].posicion = 10;
		aCanales[0].hijos[10].texto = "Diseño Páginas Web Avanzado";
		aCanales[0].hijos[10].URL = "ofimatica.asp?id=15&ec=0&es=10";
		aCanales[0].hijos[10].separador = 1;
		aCanales[0].hijos[10].color = 1;
		aCanales[0].hijos[10].icono = "";
	aCanales[0].hijos[11] = new objCanal;
		aCanales[0].hijos[11].id = "dg";
		aCanales[0].hijos[11].posicion = 11;
		aCanales[0].hijos[11].texto = "Diseño Gráfico";
		aCanales[0].hijos[11].URL = "ofimatica.asp?id=11&ec=0&es=11";
		aCanales[0].hijos[11].separador = 1;
		aCanales[0].hijos[11].color = 1;
		aCanales[0].hijos[11].icono = "";
	aCanales[0].hijos[12] = new objCanal;
		aCanales[0].hijos[12].id = "ACB";
		aCanales[0].hijos[12].posicion = 12;
		aCanales[0].hijos[12].texto = "AutoCAD Básico";
		aCanales[0].hijos[12].URL = "ofimatica.asp?id=12&ec=0&es=12";
		aCanales[0].hijos[12].separador = 1;
		aCanales[0].hijos[12].color = 1;
		aCanales[0].hijos[12].icono = "";
	aCanales[0].hijos[13] = new objCanal;
		aCanales[0].hijos[13].id = "ACa";
		aCanales[0].hijos[13].posicion = 13;
		aCanales[0].hijos[13].texto = "AutoCAD Avanzado";
		aCanales[0].hijos[13].URL = "ofimatica.asp?id=13&ec=0&es=13";
		aCanales[0].hijos[13].separador = 1;
		aCanales[0].hijos[13].color = 1;
		aCanales[0].hijos[13].icono = "";
	aCanales[0].hijos[14] = new objCanal;
		aCanales[0].hijos[14].id = "Photoshop";
		aCanales[0].hijos[14].posicion = 14;
		aCanales[0].hijos[14].texto = "Adobe Photoshop";
		aCanales[0].hijos[14].URL = "ofimatica.asp?id=17&ec=0&es=14";
		aCanales[0].hijos[14].separador = 1;
		aCanales[0].hijos[14].color = 1;
		aCanales[0].hijos[14].icono = "";
	aCanales[0].hijos[15] = new objCanal;
		aCanales[0].hijos[15].id = "Freehand";
		aCanales[0].hijos[15].posicion = 15;
		aCanales[0].hijos[15].texto = "Macromedia Freehand";
		aCanales[0].hijos[15].URL = "ofimatica.asp?id=18&ec=0&es=15";
		aCanales[0].hijos[15].separador = 1;
		aCanales[0].hijos[15].color = 1;
		aCanales[0].hijos[15].icono = "";
	aCanales[0].hijos[16] = new objCanal;
		aCanales[0].hijos[16].id = "Fireworks";
		aCanales[0].hijos[16].posicion = 16;
		aCanales[0].hijos[16].texto = "Macromedia Fireworks";
		aCanales[0].hijos[16].URL = "ofimatica.asp?id=19&ec=0&es=16";
		aCanales[0].hijos[16].separador = 1;
		aCanales[0].hijos[16].color = 1;
		aCanales[0].hijos[16].icono = "";
	aCanales[0].hijos[17] = new objCanal;
		aCanales[0].hijos[17].id = "Freehand";
		aCanales[0].hijos[17].posicion = 17;
		aCanales[0].hijos[17].texto = "Macromedia Flash";
		aCanales[0].hijos[17].URL = "ofimatica.asp?id=20&ec=0&es=17";
		aCanales[0].hijos[17].separador = 1;
		aCanales[0].hijos[17].color = 1;
		aCanales[0].hijos[17].icono = "";
	aCanales[0].hijos[18] = new objCanal;
		aCanales[0].hijos[18].id = "Conta";
		aCanales[0].hijos[18].posicion = 18;
		aCanales[0].hijos[18].texto = "Contabilidad Informatizada";
		aCanales[0].hijos[18].URL = "ofimatica.asp?id=14&ec=0&es=18";
		aCanales[0].hijos[18].separador = 1;
		aCanales[0].hijos[18].color = 1;
		aCanales[0].hijos[18].icono = "";
	aCanales[0].hijos[19] = new objCanal;
		aCanales[0].hijos[19].id = "Contaplus";
		aCanales[0].hijos[19].posicion = 19;
		aCanales[0].hijos[19].texto = "Contabilidad Contaplus";
		aCanales[0].hijos[19].URL = "ofimatica.asp?id=21&ec=0&es=19";
		aCanales[0].hijos[19].separador = 1;
		aCanales[0].hijos[19].color = 1;
		aCanales[0].hijos[19].icono = "";
	aCanales[0].hijos[20] = new objCanal;
		aCanales[0].hijos[20].id = "Ofibas";
		aCanales[0].hijos[20].posicion = 20;
		aCanales[0].hijos[20].texto = "Intensivo Ofimática Básica";
		aCanales[0].hijos[20].URL = "ofimatica.asp?id=22&ec=0&es=20";
		aCanales[0].hijos[20].separador = 1;
		aCanales[0].hijos[20].color = 1;
		aCanales[0].hijos[20].icono = "";
	aCanales[0].hijos[21] = new objCanal;
		aCanales[0].hijos[21].id = "ICI";
		aCanales[0].hijos[21].posicion = 21;
		aCanales[0].hijos[21].texto = "Intensivo Contabilidad Informat.";
		aCanales[0].hijos[21].URL = "ofimatica.asp?id=23&ec=0&es=21";
		aCanales[0].hijos[21].separador = 1;
		aCanales[0].hijos[21].color = 1;
		aCanales[0].hijos[21].icono = "";
		canal = elcanal;
		subcanal = elsubcanal;
				if (canal != -1)
				{	aCanales[canal].desplegado = 1;
				}
				redibujar();
			} 
			
		function asigna(elcanal, elsubcanal) {
		bidbuscado = 1;
		inicio(elcanal, elsubcanal);
		}

