    var a = Math.ceil(Math.random() * 3);
    var b = Math.ceil(Math.random() * 3);
    var c = a + b
    function DrawBotBoot()
    {
        document.write("For Spam Protection: What is "+ a + " + " + b +" ? ");
        document.write("<input id='BotBootInput' type='text' maxlength='1' size='1'/>");
    }
    function ValidBotBoot(){
        var d = document.getElementById('BotBootInput').value;
        if (d == c) return true;
        return false;

    }
