function show_flash_error(message) {
    $('flash_title_string').update("Error");
    $('flash_body_string').update(message);
    $('flash').show();
    new Effect.Highlight('flash_body');
}

function show_flash(message) {
    $('flash_title_string').update("Notice");
    $('flash_body_string').update(message);
    $('flash').show();
    new Effect.Highlight('flash_body');
}