
//*
//* 共通javascript
//*

 function mtCm() {
 	document.comments_form.action = "http://telblog.k-station.tv/cgi-bin/mt/telblog-comments-200812.cgi";
 }

 function disp_cookie() {
	alert(document.cookie);
 }



//*コメント投稿者名チェック

function ChkLength_Name( str ) {
	  
	  if ( CountLength(str) > 25 ){
		  alert("投稿者名は全角１２文字(半角24文字)までです。");
		  document.getElementById("comment-author").value=document.getElementById("comment-author_temp").value;
	  }else{
		  document.getElementById("comment-author_temp").value=str;
	  }
	  
}
   
//*コメント文字数表示
function ShowLength( str ) {
	  
	  var remaining_bytes = 2048 - CountLength(str) ;
      document.getElementById("inputlength").innerHTML = "→入力文字数：" + str.length + "文字/" + CountLength(str) + "bytes (残り:" + remaining_bytes + " bytes)";
			  
   }
