function deleteSite(id) {
    if (window.confirm('Êtes-vous sûr de vouloir supprimer ce site ?')) {
        window.location.href = '/subscription/delete_site/' + id;
    }
}

function deleteUser(id, fullname) {
    return window.confirm('Êtes-vous sûr de vouloir supprimer l\'utilisateur "' + fullname  + '" ?');
}

function toggleRpcRelay() {
    if ($('#rpc-relay-check').attr('checked')) {
        $('#div-rpc-relay').css('display', 'none');
    }
    else {
        $('#div-rpc-relay').css('display', '');
    }
}

jQuery(function($) {
    $("#dialog").dialog({
        bgiframe:  true,
        autoOpen:  false,
        resizable: true,
        modal:     true
    });

    $('a[href][rel=external]').livequery(function () {
        $(this).attr('target', '_blank');
    });

    $('#rpc-relay-check').bind('change', toggleRpcRelay);
    toggleRpcRelay();

    // add asterisk to required fields
    $('label.field-required').each(function(i, el) {
        var label = $(el).html();
        $(el).html(label.substring(0, label.length - 1) + '*:');
    });
});
