// JavaScript Document
function pasteEmail(encoded) {
    document.write('<a href="mailto:');
    for (i=0;i<encoded.length;i++) {
        substr=String.fromCharCode(encoded.charCodeAt(i)^6);
        document.write(substr);
    }
    document.write('">');
}

function BrowseFiles(src,dir) {
    window.open('browse.php?src='+src+'&dir='+dir, "novyRam","width=600,height=500,scrollbars=yes");
}

function PotvrdSmazani(where) {
    if (confirm("Opravdu odstranit?")) {
        window.location.href = where;
        return true;
    } else {
        return
    }
}
