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