4. Copy Script Code
Copy-and-paste the script below into your web page. The code can be placed anywhere in the page, in the head or body, before or after the applet.

<SCRIPT LANGUAGE="JavaScript"><!--
function QuickBar_DoFSCommand(command, args){
if (command == "status") window.status = args;
}// --></SCRIPT> <SCRIPT LANGUAGE="VBScript"><!--
on error resume next
Sub QuickBar_FSCommand(ByVal command, ByVal args) call QuickBar_DoFSCommand(command, args)
end sub
--></SCRIPT>

It's important that the name of the applet (highlighted in the code above) matches the name used in the HTML code. If you changed the name 'QuickBar' in the HTML code in the previous step, change the instances in the script code so they match the new name you chose.

For information about the script above, see Script Code.