function checkNewBlogForm() {
	if(jQuery("#blogTitle").val() == '') {
		alert('Please enter a title for the blog post.');
		return false;
	}	
	if(jQuery("#blogUrl").val() == '') {
		alert('Please enter a URL for the blog post.');
		return false;
	}	
	return true;
}
