Local File Browser - Works but

Greetings all,

I am using this code to open a local directory:

my_btn.addEventListener(MouseEvent.CLICK,browseIt);

function browseIt(e:Event)
{
    var showIt:FileFilter = new FileFilter("files","*;");
    var myFileReference:FileReference = new FileReference();
    myFileReference.browse([showIt]);
}

The code above opens the Win File Browser and user can then select the folder they want to open.

I would like to display the results as links and then let user open the specific sub-folder in the Win File Browser. The goal is to keep this dynamic so users can add new folders and all will be available to users via this interface.

Any help will be appreciated as always.

Cheers