SIM0220.js 556 Bytes
//文字コードはEUCで保存すること
function chk_up(){

	//文字数チェック
	if (document.frm.comment.value.length > 64) {
		alert("文字数が大き過ぎます。");
		return false;
	}
	
//	returnValue = txt;
//	self.close();
	document.frm.target = "_self";
	document.frm.action = "SIM0221.php";
	document.frm.method = "POST";
	document.frm.submit();
}

function lnk_list(){

	self.close();

//	document.frm.action = "SIM0210.php";
//	document.frm.method="POST";
//	document.frm.submit();

}

function ActComment(){

	window.focus();
	document.frm.comment.focus();
}