function checkComment(){
	if(document.commentform.author.value.length==0)
	{
		alert('名前が未入力です。');
		return false;
	}
	if(document.commentform.comment.value.length==0)
	{
		alert('コメントが未入力です。');
		return false;
	}
	return true;
}