#!/bin/sh

# if netscape is not found, specify full path here
NETSCAPE=netscape

if ${NETSCAPE} -remote "openURL($1,new-window)" 2>&1 | egrep -si "not running on display"; then
	${NETSCAPE} $1
fi


