This code below gives me a clientside error when navigating away from the page where the media player was. "Instance" is null... so gives an error when name is begin indexed.
function __flash__removeCallback(instance, name) {
instance[name] = null;
}
maybe try something like this:
function __flash__removeCallback(instance, name) {if (instance != null) { instance[name] = null; }
}