web: add camino as a $BROWSER
diff --git a/bin/web b/bin/web
index 0f24e08..10f59dd 100755
--- a/bin/web
+++ b/bin/web
@@ -30,6 +30,21 @@
 	' | osascript
 }
 
+plumbcamino()
+{
+	echo '
+		tell application "Camino"
+		activate
+		tell application "System Events"
+		tell process "camino"
+		keystroke "t" using {command down}
+		end tell
+		end tell
+		Get URL "'$1'"
+		end tell
+	' | osascript
+}
+
 plumbapple()
 {
 	case ${BROWSER:-none} in
@@ -39,8 +54,14 @@
 	safari)
 		plumbsafari "$@"
 		;;
+	camino)
+		plumbcamino "$@"
+		;;
 	none)
-		if [ -d /Applications/Firefox.app ]
+		if [ -d /Applications/Camino.app ]
+		then
+			plumbcamino "$@"
+		elif [ -d /Applications/Firefox.app ]
 		then
 			plumbfirefox "$@"
 		else
diff --git a/man/man1/web.1 b/man/man1/web.1
index 0910747..06d304d 100644
--- a/man/man1/web.1
+++ b/man/man1/web.1
@@ -45,10 +45,11 @@
 .PP
 When run under Mac OS X,
 .B $BROWSER
-should be set to the string
-.B safari
+should be set to
+.B camino ,
+.B firefox ,
 or
-.BR firefox .
+.BR safari .
 .I Web
 uses AppleScript to talk to the browser.
 If