Loading Javascript variable in flash text box

http://www.creativemagma.com/test2/index3.html

I needed this flash title mast to pull a titletest from an Html file. I found javaScript that sends the variable to flash and it show up in the dynamic text field. but why does it not take the properties of that text field? It show up as Verdana but not bold or aliased correctly. I tried emeding the font but then nothing shows up in the text field.

How can I get this text aliased and put the drop shadow on it? Right now the dynamic text field is in a movie clip with a drop shadow filter.

here’s the code:

html / java script

<SCRIPT LANGUAGE=“JavaScript”>

<!–
// set the variable in the SWF
function changetext(str){
if(window.sample) window.document[“sample”].SetVariable(“title.myText”, str);

if(document.sample) document.sample.SetVariable("title.myText", str);

}
//–>

function addLoadEvent(func) {
var oldonload = window.onload;
if (typeof window.onload != ‘function’) {
window.onload = func;
} else {
window.onload = function() {
oldonload();
func();
}
}
}

addLoadEvent(changetext);
addLoadEvent(function() {
changetext(‘load’);

});
</SCRIPT>

The flash is embeded with swliveconnect=“true”

The dynamic flash text box’s variable name is MyText.

Any help, I am stumped at this point!