// JavaScript Document
function execute_comment_submit()
{
	if(document.comment_form1.content.value=='')
	{
		document.getElementById("notebox_c").innerHTML='您还没有填写评论内容!';
		return false;
	}
	else
	{
		document.getElementById("notebox_c").innerHTML='';
	}
	
	if(document.comment_form1.user_name.value=='' && !document.comment_form1.isanony.checked)
	{
		document.getElementById("notebox_n").innerHTML='请先输入您的姓名';
		return false;
	}
	else
	{
		document.getElementById("notebox_n").innerHTML='';
	}
	document.comment_form1.submit();
}
/**/
