// JavaScript Document
function commentValidate(){
	var x=document.forms["comsform"]["Author"].value;
	var y=document.forms["comsform"]["Comment"].value;
	if (x==null || x=="")
	{
  		return false;
  	}else if(y==null || y=="" ||y=="Post your comment here."){
		return false;
	}
}
