#!/bin/sh
ll_TT=${LANG%.*}
ll=${ll_TT%_*}
if [ -f /usr/doc/${ll_TT}.HandBook.html ]; then
	w3m /usr/doc/${ll_TT}.HandBook.html
elif [ -f /usr/doc/${ll}.HandBook.html ]; then
	w3m /usr/doc/${ll_TT}.HandBook.html
else
	w3m /usr/doc/HandBook.html
fi