var minVersion = "0.8.6";
var VLC = PluginDetect.isMinVersion('VLC', minVersion);

if (VLC == 1){
   document.write(PluginDetect.getVersion('VLC'))
}

else if (VLC == 0){

   document.write('Version Unknown')

}

else if (VLC == -1) {

   if (PluginDetect.isMinVersion('VLC', '0') >= 0)
      document.write('Version Outdated')

   else document.write('Not Detected')

}

else if (VLC == -2){
   document.write('Not Detected')

}

else if (VLC == -3){
   document.write('Bad Input Argument')

};