\n' document.write(temp); // -- End MS IE Browser Hook for FS Command -- // -- Begin Javascript FS Command -- function jsloader_DoFSCommand(cmd, args) { var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1; // check for web browser client var movieObj = InternetExplorer ? jsloader : document.jsloader; // set movieObj to the Flash Object used if (cmd=="init") // this is true if the FS Command is called with command = init { // Start Javascript Preloader var test=1; // initialise the variable test test = movieObj.PercentLoaded(); // get what percentage of the movie has been loaded movieObj.TGotoFrame("_level0", test); // move to a frame that indicates how much of the movie is loaded. if (test == 100){ // is 100% of the movie loaded? retest = 0 // 100% has been loaded, so we don't need to retest. } else { // 100% has not been loaded. retest = setTimeout("jsloader_DoFSCommand('init', '')",1); // wait a bit, then check the percent loaded again. } } } // -- End Javascript FS Command -- // insert any additional functions here