function showAll() {
    for (i = 65; i<91; i++) {
        letter = String.fromCharCode(i);
        id = "dirlist_"+letter;
        if ($(id)){
            $(id).show();
        }
    }
}