An experienced software architect would say that loading up a product with trivial functions doesn't improve the product for users. It does quite the opposite. What it apparent is that an effort needs to be made to restore the solution sharing community that the old WebBoard once was.
;;; redirect.web
; Could be any 30x redirect depending on need.
WebOut('HTTP/1.1 303 See Other':@CRLF:'Location: http://www.winbatch.com/index.html',2) ; 2 required to indicate a header end.
#definefunction WebOutRedirect(_url)
return WebOut('HTTP/1.1 303 See Other':@CRLF:'Location: ':_url,2)
#endfunction