function checkform() {
	var theform = document.getElementById('theform');
	if (theform.name.value == '' || theform.ch.value == '') {
		alert ("Your name and the math question are mandatory. All other fields are optional.");
		return false;
	}
	return true;
}
