function CheckLen(){
nMaxLength = 150; //表示する最大文字数
strTemp = document.guestbook_form.body.value;
nLength = strTemp.length;
if (nLength > nMaxLength)
{
document.guestbook_form.body.innerText = strTemp.substring(0, nMaxLength);
}
}

