
var fvalid_login = new FValidate('contactForm');
	fvalid_login.add_check("name", 'Please enter your Name.'   ,["text","trim","min1","max255"]);
	fvalid_login.add_check("phone", 'Please enter your Phone.'   ,["text","trim","min5","max255"]);
	fvalid_login.add_check("email","Please enter your Email ID.",["trim","email","max45"]);
	fvalid_login.add_check("message", 'Please enter your Message here.'   ,["text","trim","min1","max255"]);

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) return true;        
        return false;
    }