$(document).ready(function(){
	$("#btnSubmit").bind("click", {}, function(){
		if (!$("#blogCommentUserName").val() || !$("#blogCommentText").val())
		{
			alert('Enter your name and comment text, please.');
			return false;
		}
	});
});
