You can use hidden forms to accomplish the same thing. The links would have an onClick() that invokes a function to populate the hidden form's fields with the values you want to pass.
For example, assume you want to link to a help facility and every page sets a 'currentPage' variable. Then,
* Your help link anchor event might be: onClick='return linkHelp(currentPage);'
* the hidden form (helpForm) would have an action attribute referring to the help page, and a field named helpTopicPage
* the linkHelp() function would set helpTopicPage.value = currentPage, then do helpForm.submit();
Note that the help page can also porovide a button to "return" since it has the original page name.