function SetUrlCombo(params) {
    var p = params.split(',');

    if (p[0] != '') {
        document.location.href = 'Seccion.aspx?IDSeccionArticulo=' + p[0] + '&OrdenSeccion=' + p[1];
    }
    else {
        document.location.href = 'Articulos.aspx';
    }
}

function SetUrlText() {
    var id, orden, i;
    var combo = document.getElementById("ComboBusqueda");

    for (i = 0; i < combo.options.length; i++) {
        if (combo.options[i].selected == true) {
            orden = combo.options[i].value;
            id = combo.options[i].id;
            document.location.href = 'Seccion.aspx?IDSeccionArticulo=' + id + '&OrdenSeccion=' + orden;
        }
    }
}