#!/bin/sh
# 
# this firefoxes the local directory, or any particular file in that directory.
if [[ "$1" != file:* ]]
	then
	_LOCATION=file://`pwd`/
	else
	_LOCATION=""
fi
if [ "$1" = "a" -o "$1" = "activate" ]
	then
	_plus=activate
	shift
	else
	_plus=""
fi
firesite ${_plus} ${_LOCATION}$*

