var imgtapa = new Image();
imgtapa.src = "img/index/01tapa.gif";

var notasArr = new Array();
notasArr[0]="Residuos s&oacute;lidos en &aacute;reas rurales";
notasArr[1]="IDH y G&eacute;nero en M&eacute;xico 2000-2005";
notasArr[2]="Multiplica inversi&oacute;n en proyectos conjuntos con los clubes de migrantes";
notasArr[3]="V Encuentro Nacional para Mujeres Rurales, Ind&iacute;genas y Campesinas";
notasArr[4]="Amatenango del Valle, Chiapas. Cultivos experimentales con el PDZP";
notasArr[5]="Navenchauc, Zinacant&aacute;n, Chiapas. Dan inicio a las obras de la red de agua potable"; 
notasArr[6]="San Luis Potos&iacute;. Cosechan agua en zonas semides&eacute;rticas";
notasArr[7]="Chenalh&oacute;, Chiapas. Inauguran aulas y CCA en el ejido fracci&oacute;n Polh&oacute;";
notasArr[8]="Le&oacute;n, Guanajuato. El 3x1 en la restauraci&oacute;n del templo de San Francisco de Coecillo";
notasArr[9]="Zacatecas. Gana el Comit&eacute; de Obra de R&iacute;o Grande el Premio Nacional de Contralor&iacute;a Social 2009";
notasArr[10]="Ciudad de M&eacute;xico. Cien a&ntilde;os de tradici&oacute;n familiar, en colecta. Cruz Roja";
notasArr[11]="San Felipe, Guanajuato. Inauguran electrificaciones en Laguna de Guadalupe";
notasArr[12]="San Javier, Loreto, Baja California Sur. Inauguran red el&eacute;ctrica";
notasArr[13]="Feria 3x1 Bicentenario: una celebraci&oacute;n de M&eacute;xico para los mexicanos";
notasArr[14]="Formas y colores en Amatenango del Valle, Chiapas";
notasArr[15]="El PDZP, en el marco del COP 16/CMP6";
notasArr[16]="La Concordia, Chiapas. El Centro Comunitario de Aprendizaje de Nuevo Para&iacute;so";
notasArr[17]="Loma de B&aacute;cum, Sonora. Inauguran espacio para la ense&ntilde;anza y la educaci&oacute;n";
notasArr[18]="San Sebasti&aacute;n Tenochtitl&aacute;n, Nopala de Villagr&aacute;n, Hidalgo. Inauguran la primaria Ignacio Zaragoza";
notasArr[19]="Sahuaripa, Sonora. Con el 3x1, los migrantes impulsan espacio educativo y cultural";
notasArr[20]="Paredoncito, Benito Ju&aacute;rez, Sonora. M&aacute;s oportunidades para los pescadores de la Bah&iacute;a de T&oacute;bari";
notasArr[21]="Aguascalientes, Aguascalientes. Grandes esfuerzos que brindan sonrisas";
notasArr[22]="Long Beach, California. Migrantes en EUA reciben informaci&oacute;n del PDZP";
notasArr[23]="Quer&eacute;taro. Obras del PDZP en el semidesierto";
notasArr[24]="Yucat&aacute;n. Acciones del PDZP apoyan a familias de Dzemul y Teabo";

var notasVinc = new Array();
notasVinc[0]="1";
notasVinc[1]="2";
notasVinc[2]="3";
notasVinc[3]="4";
notasVinc[4]="11";
notasVinc[5]="12"; 
notasVinc[6]="13";
notasVinc[7]="14";
notasVinc[8]="15";
notasVinc[9]="16";
notasVinc[10]="17";
notasVinc[11]="18";
notasVinc[12]="19";
notasVinc[13]="20";
notasVinc[14]="21";
notasVinc[15]="22";
notasVinc[16]="23";
notasVinc[17]="24";
notasVinc[18]="25";
notasVinc[19]="26";
notasVinc[20]="27";
notasVinc[21]="28";
notasVinc[22]="29";
notasVinc[23]="30";
notasVinc[24]="31";

notasArr.reverse();
notasVinc.reverse();

function contenidoLay(muestra) {
	var lay2="";
	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 la Unidad de Microrregiones</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>";
	if(muestra=="year"){
		for(i=0;i<5;i++){
		lay1 += "<li><a href='notas.php?n="+notasVinc[i]+"'>"+ notasArr[i] +"</a></li>";
		}
		lay1 += "<li><a href='notashistorico.php'>HIST&Oacute;RICO DE NOTAS</a></li>";
	} else {	
		for(i=0;i<notasArr.length;i++){
			lay2 += "<li><a href='notas.php?n="+notasVinc[i]+"'>"+ notasArr[i] +"</a></li>";
		}
	}
	lay1 += "</ul></td>";
	lay1 += "</tr>";
	lay1 += "</table>";
	if(muestra=="year"){
		document.write(lay1);
	} else {
		document.write("<ul>");
		document.write(lay2);
		document.write("</ul>");
	}
}
/************************************************
EMPIEZA MENU NOTICIAS DESPLAZABLES
*************************************************/
/*var text1="<tr><td align='left' valign='top'>~ <a href='notas.php?n=";
var text2="'>";
var text3="</a></td></tr><tr><td align='left' valign='top'><img src='img/spacer.gif' width='7' height='8' /></td></tr>";
var initabla = "<table width='190' border='0' cellspacing='0' cellpadding='0' align='center'>";
wholemessage=initabla;
	for(i=0;i<notasArr.length;i++){
		wholemessage+= text1 + notasVinc[i] + text2 + notasArr[i] + text3;
	}
wholemessage+="</table>";
*/

var text1="~ <a href='notas.php?n=";
var text2="' style='color:#555;text-decoration:none;' target='_parent'>";
var text3="</a></p>";
var wholemessage="";
	for(i=0;i<notasArr.length;i++){
		wholemessage+= "<p style='font-family:arial;font-size:10px;padding-left:10px;text-indent:-10px'>" + text1 + notasVinc[i] + text2 + notasArr[i] + text3;
	}


/************************************************
TERMINA MENU NOTICIAS DESPLAZABLES
*************************************************/
