#!/bin/bash
. findwine
if [ -e "$HOME/.wine/c/Program Files/Microsoft Office/Office/WINWORD.EXE" ]; then
  $WINE "c:\\program files\\microsoft office\\office\\winword.exe" ${PARAM:+"$PARAM"} &>/dev/null &
  wait $!
else
  wordview97 $@
fi
