
function checkLength(txt,len) {
	var str = new String(txt);
	
	if(str.length > len)
		return false;
	
	return true;
}
