// JavaScript Document
function val_postcommentform(f) {
	if (document.frmSentComments.nickname.value == ""){
		alert("Please Provide Your Name")
		document.frmSentComments.nickname.focus();
		return false;
	}
	
	if (document.frmSentComments.comments.value == ""){
		alert("Please Write Your Comments.")
		document.frmSentComments.comments.focus();
		return false;
	}
}


