// Wird aufgerufen in HTML mit in <a> mit Attribut onclick.
// Aktiviert den übergebenen Wochentag. Erlaubt ist
// mo, di, mi, do und fr
function show_weekday(weekday)
{
    $(document).ready(function(){
        $(".weekday").hide();
        $("#weekday_" + weekday).show();
        $("#wochennavi li").removeClass("shown");
        $("#" + weekday).addClass("shown");
    });
}

function preview(teaser)
{
    window.open("/index.php?preview=" + teaser);
}

function remove(teaser)
{
    parent.location="?site=fotos&refresh=fotos&delete=" + teaser;
}

function change(teaser)
{
    parent.location="?site=fotos&refresh=fotos&change=" + teaser;
}

function GetBaseName(file)
{
    var Parts = file.split('\\');
    if( Parts.length < 2 )
    Parts = file.split('/');
    return Parts[ Parts.length -1 ];
}