René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

Launching MS Word with JavaScript

The following function launches MS Word from within JavaScript:
function launch_word() {
  var w=new ActiveXObject('Word.Application'); 
  w.Application.Visible=true;
}