/* simple function for showing a message box: type can be error or info */
function gag_show_box(id, type, message) {
    var icon;
    if (type == 'error')
        icon = 'Close-2-24x24.png';
    else
        icon = 'Ok-24x24.png';

    var html = '<div class="' + type + '-box">' +
        '<table>' +
        '<tr>' +
        '    <td><img src="/images/icons/' + icon + '"></img></td> '+
        '    <td>' + message + '</td> ' +
        '</tr>' +
        '</table>' +
        '</div>';

    $('#' + id).empty();
    $('#' + id).html(html);
}