function selectCliente( redirectTo ) {
    var url = '/listCliente?ajax=true';
    if( redirectTo ) url += '&redirectTo='+redirectTo;
    $('#list-cliente')
            .load(url)
            .dialog({
                resizable: false,
                width: 640,
                height: 500,
                title:'Seleziona cliente',
                zIndex: 12000,
                modal: true,
                position: ['center',90]
            });
}

function selectAgente() {
    $('#list-agente')
            .load('/listAgente?ajax=true')
            .dialog({
                resizable: false,
                width: 640,
                height: 500,
                title:'Seleziona agente',
                zIndex: 12000,
                modal: true,
                position: ['center',90]
            });
}
