#!/bin/sh
ARGS=$* 
if ( ps -u `whoami` | grep netscape >/dev/null); then 
 netscape -remote "openURL($ARGS)"
else
 netscape $ARGS
fi 

