Well then you need to find the function (it will probably look partly like this at its beginning):
function Launch(
It may be included in the flash file's code somewhere or be elsewhere linked to the page or on the page itself.
Or you may be able to just rewrite the call in the flash file:
Code:
getURL("javascript:Launch(\'diable.html\')");
to:
Code:
getURL("javascript:myLaunch(\'diable.html\')");
Then you could probably write your own myLaunch function on the page like this (or more involved if you like):
Code:
<script type="text/javascript">
function myLaunch(url){
window.open(url, '', 'width=400 height=350 resizable=1')
}
</script>
Bookmarks