function checkCategoryFrm()
{
	if ($('bbscat_name').value == '')
		return true;
	else
		return true;

}

function calcLenStr(m)
{
	var l = $('str_field').value;
	
	if (l.length > m)
	{
		l = l.substr(0, m);
		$('str_field').value = l;
	}
	
	
	$('str_info').value = l.length;
	
}
