You have all sorts of options... but it's going to depend on your limiting factors, they narrow quickly.
Can you count on javascript being enabled on the client computer?
Can you count on being allowed to leave cookies?
Are you sure it has to be an HREF tag, and you can't just use a button?
Are these variables passed to this page, or variables generated on this page?
Is the HREF tag taking you to another of your own pages, if so is it within the same domain?
So basically, I'm thinking of...
javascript to submit a form through an HREF tag (silly but effective)
javascript to modify a button such that it can take you to different locations depending on button (one reason people use HREF's to submit variables)
session variables
and cookies.
-Rob