The SWF makes a call out to this JavaScript function:


function callBack(string){
alert(string);
}

Why? .. the SWF needs to escape the string before sending out to the browser if the browser is NOT Internet Explorer. This will keep the unicode characters from getting garbled.

Also see this page that shows what happens when JavaScript escapes the string..

FLA is here