Instead of linking to Word files you can link to PHP file in which would you set header like this:
header("Content-Disposition: attachment; filename=myfile.doc");
header("Content-type: application/x-octet-stream");
and then just read file from disk and send it to the browser. This works for me for all files (.html, too) in both IE and NN.