function Init(){}

function commentChk(){
	if(document.COMMENTFORM.comment.value){
		document.getElementById("commentButton").style.display="block";
	}else{
		document.getElementById("commentButton").style.display="none";
	}
}

function submitChk(){
	document.getElementById("commentButton").style.display="none";
	return true;
}

//数字チェック
function checkIsNumber(value){
      return (value.match(/[0-9]+/g) == value);
}
