Little tweaks and documentation.
diff --git a/bin/web b/bin/web
new file mode 100755
index 0000000..3961520
--- /dev/null
+++ b/bin/web
@@ -0,0 +1,35 @@
+#!/bin/sh
+
+plumb1()
+{
+	case $BROWSER in
+	# Other browsers here
+	# ...
+	*opera*)
+		$BROWSER -remote 'openURL('$i', new-page)'
+		;;
+	*firebird*)
+		$BROWSER -remote 'openURL('$i', new-window)'
+		;;
+	esac
+}
+
+if [ $# = 0 ]
+then
+	plumb1 about:blank
+else
+	for i
+	do
+		if [ -f "$i" ]
+		then
+			i=file://`pwd`/$i
+		fi
+		plumb1 $i
+	done
+fi
+
+case $BROWSER in
+*opera*)
+	$BROWSER -remote 'raise()'
+esac
+