function CheckForm() {  
if (document.getElementById('email').value == "") {
	alert("You did not enter your email address.");
	}
else {
	CheckTitle();
	}
}
 
function CheckTitle() {  
if (document.getElementById('title').value == "") {
	alert("You did not enter a title for the headline.");
	}
else {
	CheckBody();
	}
}
 
function CheckBody() {  
if (document.getElementById('body').value == "") {
	alert("You did not enter a body for the headline.");
	}
else {
	document.getElementById('axistvform').submit();
	}
}

