This Script allows your visitors or customers to accept your terms and conditions before proceeding by ticking a Check Box. If they don't agree, an exit box on the form takes them back to the home page.
Add the below code to the <body> section of your page:
<scriptlanguage="javascript"type="text/javascript"> /* Visit http://www.yaldex.com/
for full source code
and get more free JavaScript, CSS and DHTML scripts! */
<!-- Begin function
checkCheckBox(f){ if(f.agree.checked==false)
{ alert('Please
check the box to continue.'); returnfalse;
}else returntrue;
} // End --> </script> <center> <formaction="http://yaldex.com/JSFactory_Pro.htm"method="POST"onsubmit="return
checkCheckBox(this)"> I accept: <inputtype="checkbox"value="0"name="agree">
<input
type="submit"value="Continue
Order">
<input
type="button"value="Exit"onclick="document.location.href='http://yaldex.com/JSFactory_Pro.htm';">
</form> </center>