Well, no, you have to have a button submit it; however, that does not mean you can't control how the button looks!!!
Using simple CSS, you can make the button appear "flat". You can style it like to be like so if you want:
CSS Code
<style type="text/css"><!--
/* Define button UP state */
.button1{
background-color: #fff;
color: #000;
font-size: 11pt;
border: none;
cursor: pointer;
padding: 0;
margin: 0;
text-decoration: underline;
}
/* Define button roll Over state */
.button1:hover,
.button1.over
{
background-color: #abd;
}
-->
</style>
Then, some simple HTML/Java:
<button type="submit" class="button1" onMouseOver="this.className+=' over';" onMouseOut="this.className=this.className.replace(' over', '');">Log Into the Members Area</button>
That should work for what you want. You can view it online here:
Viewable Here
~Brett