function confirmAndDeleteAtom( url, message ){
    if( confirm( message ) ){
        location.href = url;
    }
}

function showAtomAdder( url ){
    window = window.open( url, '_blank', 'directories = no, height = 200, width = 400, location = no, menubar = no, toolbar = no, top = 32, left = 32' );
}

function showAtomEditor( url ){
    window = window.open( url, '_blank', 'directories = no, height = 600, width = 800, location = no, menubar = no, toolbar = no, top = 32, left = 32, scrollbars = yes' );
}

function showGalleryImage( url ){
    window = window.open( url, '_blank', 'directories = no, height = 600, width = 800, location = no, menubar = no, toolbar = no, top = 32, left = 32, scrollbars = yes' );
}