
function BlockComment(baseUrl, cID) {
    var PageLoc;
    if (window.confirm("Bloccare questo commento?")) {
        PageLoc = baseUrl + "?op=b&cID=" + cID;
        //window.alert (PageLoc);
        document.location = PageLoc;
    }
}

function AuthorComment(baseUrl, cID) {
    var PageLoc;
    if (window.confirm("Autorizzare questo commento?")) {
        PageLoc = baseUrl + "?op=a&cID=" + cID;
        //window.alert (PageLoc);
        document.location = PageLoc;
    }
}

function SuspendComment(baseUrl, cID) {
    var PageLoc;
    if (window.confirm("Sospendere questo commento?")) {
        PageLoc = baseUrl + "?op=s&cID=" + cID;
        //window.alert (PageLoc);
        document.location = PageLoc;
    }
}

function AuthorAll(baseUrl) {
    var PageLoc;
    if (window.confirm("Autorizzare TUTTI i commenti?")) {
        PageLoc = baseUrl + "?op=aa";
        //window.alert (PageLoc);
        document.location = PageLoc;
    }
}

function BlockAll(baseUrl) {
    var PageLoc;
    if (window.confirm("Bloccare TUTTI i commenti?")) {
        PageLoc = baseUrl + "?op=ba";
        //window.alert (PageLoc);
        document.location = PageLoc;
    }
}

function SuspendAll(baseUrl) {
    var PageLoc;
    if (window.confirm("Sospendere TUTTI i commenti?")) {
        PageLoc = baseUrl + "?op=sa";
        //window.alert (PageLoc);
        document.location = PageLoc;
    }
}
