Hola,
En la funcion "showfile()" puedes hacer que se ponga "filename" como valor de los parametros html que necesitas, esto, podria realizarse de la siguiente manera:
Código Javascript
:
Ver originalfunction showfile() {
var pathname = location.pathname;
var filename = pathname.substr(pathname.lastIndexOf("\\")+1,pathn ame.length);
document.getElementById("idDelParam").setAttribute("value",filename);
document.getElementById("idDelEmbed").setAttribute("FlashVars",filename);
}
El metodo setAttribute nos permite crear/modificar un parametro de un elemento html.
Debes asignarle un id al param y al embed, y reemplazar a idDelParam y idDelEmbed, respectivamente.