I'm trying to load an swf file from an html page at a particular frame using Java Script. IE works fine but Netscape (fRM>>>BLEEP BLEEP DAM>>) is giving crazy results.
Here is my sample code :


<SCRIPT LANGUAGE=JavaScript>
<!--
var movie = whichObj('ViciousSite');

if (movie != null)
{
do{
var perc = movie.PercentLoaded();
} while ( perc != 100 )
if (navigator.appName == "Netscape")
movie.GotoFrame(1420);
}
movie.GotoFrame(1420)

//-->



Please Help!!!!