// JavaScript Document    var a = Math.ceil(Math.random() * 10);    var b = Math.ceil(Math.random() * 10);           var c = a + b    function DrawBotBoot()    {		/*<![CDATA[*/		document.write("<label for='captcha'>What is "+ a + " + " + b +": *</label>");        document.write("<p class='contacFormP'><input id='BotBootInput' name='BotBootInput' class='formfieldClass' type='text' /></p> ");		/*]]>*/    }        function ValidBotBoot(){        var d = document.getElementById('BotBootInput').value;        if (d == c) return true;                return false;            }
