function AppRenewLenOfDIV(max){
	str = document.all("content").innerText;
	if(str.length>max)
	{
		document.all("content").innerHTML=str.substring(0,max);
		document.getElementById("zishu").innerHTML="<font color=red><b>0</b></font>";
		alert("输入的字符不能多于 "+max+" 个!请先删除一部分文字后再次提交!");
	}
	else
	{
		var j=max - str.length;
		document.getElementById("zishu").innerHTML=j;
	}
}

function killErrors() {
	return true;
}
