
<!-- TWO STEPS TO INSTALL ACCEPT TERMS:

  1.  Add the onLoad event handler into the BODY tag
  2.  Copy the coding into the BODY of your HTML document  -->

<!-- STEP ONE: Insert the onLoad event handler into your BODY tag  -->

<BODY onLoad="loadedvar=true;">

<!-- STEP TWO: Paste this code into the BODY of your HTML document  -->

<!-- Original:  Colin PC (webmaster@insighteye.com) -->
<!-- Web Site:  http://www.insighteye.com -->

<form name="terms" action="nextpage.html" method="get">
I accept: <input type="checkbox" name="agree" value="ON">
<input onclick="if (loadedvar) {if (document.terms.agree.checked) {document.terms.submit();} else {window.alert('You must click the box to continue.')}} else {window.alert('Please wait...')}" type="button" value="Continue Order">
<input type="button" value="Exit" onclick="document.location.href='/index.html';">
</form>
