Hi!
To use an image as a reset button you might do that:
Set a form name:
<form action="..." method="..." name="your_form_name_here">
Use this code to add a reset button only if the user activated JavaScript:
<script language="JavaScript">document.write("<a href=\"javascript:document.your_form_name_here.reset()\"><img src=\"images/reset.gif\" alt=\"Reset\" border=0></a>");</script>
or this to show the button even without JavaScript (it won't work without):
<a href="javascript:document.your_form_name_here.reset()"><img src="images/reset.gif" alt="Reset" border=0></a>
Leif