#!/bin/sh
# this deals with URL encoding# a script that simply eacoes its arguments (used to create a frame that is just a message


./generate_head "$*"
echo "<body>"
echo $* | sed "$SED_COMMANDS
s/%20/ /g
s/%2C/,/g
s/%2F/\//g
s/%3B/;/g
s/%3D/=/g
s/&/ /g
"
echo "</body> </html>"
