var a = Math.ceil(Math.random() * 10);
    var b = Math.ceil(Math.random() * 10);       
    var c = a + b
    function DrawBotBoot()
    {
        document.write("What is "+ a + " + " + b +"? ");
        document.write("<input id='BotBootInput' type='text' maxlength='2' size='2'/>");
    }    
    function ValidBotBoot(){
  var d = document.getElementById('BotBootInput').value;
    if (d == c)
			document.Contact_Form.submit();
		else
		{
			alert("I'm sorry. Please check your math and try again.");
			window.location.reload();
			return false;
		}
    }
