// VBX embedded call needed for calling js from flash

var minx = navigator.appName.indexOf("Microsoft")
var musa = navigator.userAgent.indexOf("Windows") 
var musx = navigator.userAgent.indexOf("Windows 3.1")

if (navigator.appName && minx != -1 && musa != -1 && musx == -1) {

  document.writeln('<script language="VBScript">')
  document.writeln('On Error Resume Next')
  document.writeln('Sub lepkem_FSCommand(ByVal command, ByVal args)')
  document.writeln('Call lepkem_DoFSCommand(command, args)')
  document.writeln('End Sub')
  document.writeln('</script>')
}


