he estado rebuscando por dentro (fuente del html y descompilar flash y tal )
he sacado alguna cosilla que a lo mejor te interesa
Del HTML:
<script LANGUAGE="JavaScript">
var isInternetExplorer = navigator.appName.indexOf("Microsoft") != -1;
function d500Flash_DoFSCommand(command, args)
{
var flashObj = isInternetExplorer ? document.all.d500Flash : document.d500Flash;
if(command == "resizeWin")
{
args_array = args.split(",");
resizeWin(Number(args_array[0]), Number(args_array[1]));
}
}
if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1 && navigator.userAgent.indexOf("Windows 3.1") == -1) {
document.write('<script language=\"VBScript\">\n');
document.write('On Error Resume Next\n');
document.write('Sub d500Flash_FSCommand(ByVal command, ByVal args)\n');
document.write(' Call d500Flash_DoFSCommand(command, args)\n');
document.write('End Sub\n');
document.write('</script>\n');
}
</script>
en el flash me he encontrado con:
resizeWindow(799, 580, 6, false);
es así lo mas destacable que he encontrado.