Here is a little addition I did one of the forms I produced off your site. It had multiple pages and when you went to the next page the form did not go automatically go to the top so I added the following.
Place this in the <head>
<SCRIPT ="text/javascript">
function movepage()
{
window.location.href = "#top";
}
</script>
and this at the top of every page add
<a name="top"></a>
I put a title on each page and but the <a name="top"> around it.
Then you need to add movepage(); to each page button. Example
Here is a little addition I did one of the forms I produced off your site. It had multiple pages and when you went to the next page the form did not go automatically go to the top so I added the following.
Place this in the <head>
<SCRIPT ="text/javascript">
function movepage()
{
window.location.href = "#top";
}
</script>
and this at the top of every page add
<a name="top"></a>
I put a title on each page and but the <a name="top"> around it.
Then you need to add movepage(); to each page button. Example
<input type=button onClick="if (validatePage1()) { collapseElem('mainForm_1'); expandElem('mainForm_2'); movepage();}" class="mainForm" value="Go to page 2"/>