')}; function MainPreloader_DoFSCommand(command, args){ if (command == "messageBox"){ alert(args); return true; } if (command == "speak"){ VoiceObj.Speak(args, 3); } if (command == "resize"){ document.getElementById("sco").style.width = args.substr(0, args.indexOf(","))+"px"; document.getElementById("sco").style.height = args.substr(args.indexOf(",") + 1, args.length)+"px"; } if (command == "stopTTS"){ VoiceObj.Speak('', 2); } }