Function Call from html?

Is it possible to load an html document into flash via:

story = new XML();
story.ignoreWhite = true;
story.load(“sample.html”);
story.onLoad = function () {
content.htmlText = story;
}

and have a text link in the html call a function that is defined in the actionscript?