	function addmycomment()
	{		
		
			if (document.comment.contactname.value == "")
	  	{
	  		alert("Please enter your name")
			return false;
		}

			if (document.comment.addacomment.value == "")
	  	{
	  		alert("Please enter a comment")
			return false;
		}
			if (document.comment.byebye.value == "")
	  	{
	  		alert("Please enter the correct answer to the simple maths question")
			return false;
		}
		
			if (document.comment.byebye.value<=4)
	  	{
	  		alert("Please enter the correct answer to the simple maths question")
			return false;
		}
			if (document.comment.byebye.value>=6)
	  	{
	  		alert("Please enter the correct answer to the simple maths question")
			return false;
		}
		
		
		
	document.comment.submit()

	     }
