var im1a = new Image();
var im1b = new Image();
var im2a = new Image();
var im2b = new Image();
var im3a = new Image();
var im3b = new Image();

im1a.src = "images/bot_inicio.png"; 
im1b.src = "images/bot_inicio2.png";
im2a.src = "images/bot_directorio.png";
im2b.src = "images/bot_directorio2.png";
im3a.src = "images/bot_buzon.png";
im3b.src = "images/bot_buzon2.png";


var imgtapa = new Image();
imgtapa.src = "images/index/01tapa.gif";

var notasArr = new Array();
notasArr[0]="Capacitaci&oacute;n para Nuevos Promotores de CCA. Puebla";
notasArr[1]="Se reconoce la labor de 4 promotores de CCA. Ciudad de M&eacute;xico";
notasArr[2]="Bachillerato Tecnol&oacute;gico Bivalente a Distancia. Ciudad de M&eacute;xico";
notasArr[3]="Jornadas Regionales de Capacitaci&oacute;n a Mujeres L&iacute;deres de Organizaciones Sociales del Medio Rural";
notasArr[4]="Gira de promoci&oacute;n del portal: M&eacute;xico en Comunidad";


var notasVinc = new Array();
notasVinc[0]="1";
notasVinc[1]="2";
notasVinc[2]="3";
notasVinc[3]="4";
notasVinc[4]="5";

notasArr.reverse();
notasVinc.reverse();

function contenidoLay() {
	var lay1 = "<table width='350' border='0' cellspacing='0' cellpadding='0'>";
	lay1 += "<tr>";
	lay1 += "<td height='24'>&nbsp;</td>";
	lay1 += "<td align='right' valign='bottom'><a href='javascript:void(document.getElementById(\"allNotas\").style.visibility=\"hidden\")'>cerrar</a>&nbsp;&nbsp;&nbsp;</td>";
	lay1 += "</tr>";
	lay1 += "<tr>";
	lay1 += "<td width='15' height='35' bgcolor='#35021A'>&nbsp;</td>";
	lay1 += "<td width='358' bgcolor='#35021A'><strong style='font-size:13px'>Lista de notas de los C C A </strong></td>";
	lay1 += "</tr>";
	lay1 += "<tr>";
	lay1 += "<td><span class='rayadown'><img src='img/spacer.gif' width='10' height='8' /></span></td>";
	lay1 += "<td><span class='rayadown'><img src='img/spacer.gif' width='10' height='8' /></span></td>";
	lay1 += "</tr>";
	lay1 += "<tr>";
	lay1 += "<td>&nbsp;</td>";
	lay1 += "<td><ul>";
	for(i=0;i<notasArr.length;i++){
		lay1 += "<li><a href='nota.php?n="+notasVinc[i]+"'>"+ notasArr[i] +"</a></li>";
	}
	lay1 += "</ul></td>";
	lay1 += "</tr>";
	lay1 += "</table>";
	document.write(lay1);
}