I must be confused, the link you provided to your site is already your home page, although a tad different.
http://www.thepcmanwebsite.com/
You can make a redirect index page to forward your users to the page you linked.
Put the below code in a index.html page and upload it overwriting the current one.
Code:
<script>
var browser_type=navigator.appName
var browser_version=parseInt(navigator.appVersion)
//if NS 6
if (browser_type=="Netscape"&&browser_version>=5)
window.location.replace("http://www.thepcmanwebsite.com/cgi-bin/web_tools/web_page_creator/web_page_creator.pl")
//if IE 4+
else if (browser_type=="Microsoft Internet Explorer"&&browser_version>=4)
window.location.replace("http://www.thepcmanwebsite.com/cgi-bin/web_tools/web_page_creator/web_page_creator.pl")
//if NS4+
else if (browser_type=="Netscape"&&browser_version>=4)
window.location.replace("http://www.thepcmanwebsite.com/cgi-bin/web_tools/web_page_creator/web_page_creator.pl")
//Default goto page (NOT NS 4+ and NOT IE 4+)
else
window.location="http://www.thepcmanwebsite.com/cgi-bin/web_tools/web_page_creator/web_page_creator.pl"
</script>