in reply to Browser Manipulation

As chromatic said, this is really a client-side issue. Probably the easiest way to achieve this is to use client-side JavaScript, not Perl. Just add:
onLoad="document.myForm.reset();"
to your <body> tag (replace myForm with the name of your form), and you should be set (tested in Netscape, haven't tried IE).

- Zoogie