function chkForm(f){		
	if(f.content.value.length < 10){   
	  alert("字符输入小于10字！");
	  return false;
	}
	
	if(f.content.value.length > 70){   
	  alert("字符输入超过70字！");
	  return false;
	}
	
	if(f.code.value.length < 4){   
	  alert("请输入验证码！");
	  return false;
	}
}

function countlen(f){  
	if(f.value.length > 70){   
	  alert("字符输入超过70字！");
	  f.value=f.value.substring(0,70);
	}
	return true;   
}

function changeCode()		//验证码更换
{
	document.getElementById("randimg").innerHTML="<img src=\"code_message.php\"/>&nbsp;<a href=\"javascript:changeCode();\" title=\"看不清 换一张\">看不清 换一张</a>";
	document.messForm.code.value = "";
}
