﻿function regione(regionId) {
    if (regionId != 5)
        getRegionalConsortia(regionId, 0);
    else
        document.location.href = 'Veneto.aspx';
}

function getRegionalConsortia(regionId, pageIndex) {
    $("#Progress").show();
    $.ajax({
        url: "RegionDetails.ashx",
        data: ({ id: regionId, p: pageIndex }),
        cache: false,
        dataType: "html",
        success: function(htmlResult) {
            $("#RegionDetails").html(htmlResult);
            $("#Progress").hide();
        }
    }); 
}