I wont sit here and knock the design process of your pages however I would do things different. Have you thought of a intuative step 1, step 2, step 3.... process? Anyhow Im not here to write code for people either - assist those with specific problematic pieces of code, yes.
Any way this may help you. You can use
JS to make any hyperlink submit a form and or hidden form fields but you can not disable the back button in the browser (some may say you can. I have never seen it working accross the common browsers/versions)
<a href="#" title="Click to..." onClick="javascript
:formName.submit();">Link Txt </a>
You can replace:
onClick="javascript
:formName.submit();">
With:
onClick="someName();">
and re assign the action property to submit to different pages depending what link is clicked:
function someName()
{
formName.action = 'pageName.asp';
formname.submit();
}
Wind is your friend
Matt