#!/bin/sh

APP=/usr/bin/firefox

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