You are using the back button to return the search form, in which case the save criteria will be shown, as you not loading a new Search Field, you simply returning back to the old page.
To avoid this, link to the search page instead, and disable the back button.
To disable the back button on the search results page insert the following code:
Code:
onLoad="if(history.length>0)history.go(+1)"
Alternatively, you could use an onload function within the search fields that resets all the data...

|