function IsSpeechPluginInstalled() {
  if(navigator.appName == 'Netscape') {
  if(navigator.plugins["SpeechPlugin"]) return (1);
    else return (0);
  } else if(navigator.appName == "Microsoft Internet Explorer") {
    return CheckIEControl();
  }
}