var a = Math.ceil(Math.random() * 10);
var b = Math.ceil(Math.random() * 10);       
var c = a + b
function DrawBotBoot()
    {
        document.write("<p><strong>Anti-spam question: what is "+ a + " + " + b +"?</strong></p>");
        document.write("<p><input id='BotBootInput' type='text' maxlength='2' size='2'/></p>");
    }

function checkSearchForm()

{

            //check that items have been selected

    theform = document.emailform;
	
	
// - About You Details - //


            if(theform.your_name.value=="")

            {
                        alert("Please fill in your name.");              
                        return false;
            }
			
			if(theform.email.value=="")

            {
                        alert("Please fill in your email address.");              
                        return false;
            }
			
			if(theform.msg.value=="")

            {
                        alert("Please write a message.");              
                        return false;
            }

			var d = document.getElementById('BotBootInput').value;
        	if (d == c) 
			return true; 
			alert("Please fill in the correct answer.");
        	return false;
			
 }
