

function EncNormas(defecto)
{
	 var normas1 = Array("Normas","01.4","02.2","03.1","04.1","05.2","06.3","07.1","08.2","09.2","10.2","11.3","12.3","13.1","14.2","15.1","16.1","17.2","18.2","19.0","20.0","21.0","22.0","23.0","24.0","25.0");
	 var normas2 = Array("normas.htm","norma_01_4.htm","norma_02_2.htm","norma_03_1.htm","norma_04_1.htm","norma_05_2.htm","norma_06_3.htm","norma_07_1.htm","norma_08_2.htm","norma_09_2.htm","norma_10_2.htm","norma_11_3.htm","norma_12_3.htm","norma_13_1.htm","norma_14_2.htm","norma_15_1.htm","norma_16_1.htm","norma_17_2.htm","norma_18_2.htm","norma_19_0.htm","norma_20_0.htm","norma_21_0.htm","norma_22_0.htm","norma_23_0.htm","norma_24_0.htm","norma_25_0.htm");
   document.write("<tr><td>");
	 document.write("<table width='100%'>");
	 document.write("<tr bgcolor='#eff3f8'><td style='font-weight: bold'>");
	 for (i=0; i < normas1.length ; i++) 
     {
			if (i == defecto) 
      	{
      	document.write("<font class='mini'>&lt;" + normas1[i] + "&gt; </font>");
      	}
      else
      	{
      	document.write("<a class='MiniLink' href='" + normas2[i] + "' style='text-decoration: none; font-weight: bold'>&lt;" + normas1[i] + "&gt; </a>");
      	}		 
		 }
   document.write("</td></tr></table></td></tr>");

}

