#!/bin/sh
url=file://localhost/afs/sipb.mit.edu/project/www/iap/iap-top.html
if [ x$DISPLAY != x ]; then
	Mosaic $url &
else
	if [ ! -f /mit/outland/bin/lynx ]; then
		attach outland > /dev/null
	fi
	/mit/outland/bin/lynx $url
fi

