#!/bin/sh

APP=/usr/local/Acrobat4/bin/acroread

if [ $# -eq 2 ] ; then
  $APP "$2" &
else
  $APP &
fi
