I can make something similar, but not exactly the same.
Header code:
Code:
<script language="JavaScript">
function setVisibility(id, visibility) {
document.all[id].style.display = visibility;
}
</script>
Name area & buttons:
Code:
<textarea>Your terms...</textarea><br>
<br>
Your Name: <input name="name" size="25" maxlength="255" type="text"><br>
<br>
I agree to the terms. <input onclick="setVisibility('submitbutton', 'inline')"
name="termsagree" value="agree" type="radio"><br>
<br>
I do not agree to the terms. <input checked="checked" onclick="setVisibility('submitbutton', 'none')"
name="termsagree" value="donotagree" type="radio" c><br>
<br>
<input id="submitbutton" style="display: none;" type="submit">
Add that to your existing form, no need to put your terms in that box, it can be deleted. Thats as good as I can work up, and it does same thing, simpler but the name box is not required, its just first, so most people would automatically do it first. I know your going to re-order it, I don't think that script will help to much. But its worth a shot.
Bookmarks