import flash.external.ExternalInterface;
System.useCodepage = false;
btn.onRelease = function() {
var lv:LoadVars = new LoadVars();
lv.onData = function(src:String) {
ExternalInterface.call(src);
ExternalInterface.call("jsFunction()");
ExternalInterface.call("alert('ezzz.5dblog.com')");
};
lv.load("http://www.yourdomain.com/javascript.js");
};
_root.stop();