var confirmMsg  = 'Are you sure you want to delete this comment?';
function confirmLink(theLink)
{
    if (confirmMsg == '') {
        return true;
    }

    var is_confirmed = confirm(confirmMsg);
    if (is_confirmed) {
        theLink;
    }

    return is_confirmed;
}