Can I change the form method = "post" action

Is it possible to change the following Notes generated html line? This is what I see when I view source via the web, but I need the post action to go to another url. Any ideas?

Subject: Can I change the form method = “post” action

You can close the Domino-created form with a end tag and create your own tag, using passthru HTML. Note that any JavaScript you use will need to reference your form by index 1 (document.forms[1]) since it will be the second form on the page, or by the name you give it (document.forms[“yourFormName”]).