There are a few syntax errors, especially the ones here may cause problems:
CODE
<form name=""MyForm" "action="cgi-bin/mycgi.pl"; enctype="multipart/form-data" method="POST">
Try instead:
CODE
<form name="MyForm" action="cgi-bin/mycgi.pl" method="POST">
(you should normally not use
enctype="multipart/form-data" in an ordinary form, so I removed that as well).
You should also remove the email link at the end of the form, or add a closing
</a> if you do want the link to be there.
---
BTW, MS Office programs (FrontPage and especially Word) are not recommended for making web pages. DreamWeaver or Nvu are said to be better (the latter free).