<!--
function makeArray() {
var args = makeArray.arguments;
    for (var i = 0; i < args.length; i++) {
    this[i] = args[i];
    }
this.length = args.length;
}

// This array holds the descriptions and names of the pages.

var pages = new makeArray("Secciones >>>",
                        "Institución",
                        "Centro de Comerc. Campesina",
                        "Programa Productivo Alimentario",
                        "Fitomejoramiento",
						"Directorio de Comerc. Camp.",
                        "Granja Integral");

// This array hold the URLs of the pages.

var urls = new makeArray("",
                        "../Institucion/index.asp",
                        "../ccc/index.asp",
                        "../ppa/index.asp",
                        "../fpma/index.asp",
                        "../dcc/index.asp",
                        "../cec/index.asp");

// This function determines which page is selected and goes to it.

function goPage(form) {
i = form.menu.selectedIndex;            
    if (i != 0) {
    window.location.href = urls[i];  
    }
}
document.write('<FORM><select name="menu" class="formulari" onChange = "goPage(this.form)">');
    for (var i = 0; i < pages.length; i++) {
    document.write('<OPTION>' + pages[i]);
    }
document.write('</SELECT>');
//-->