
function Check_Str(text,cnt)
{
	var text2 = "";
	cnts = text.length;
	for(i=1;i<=cnt;i++)
	{
		text2 = text.substring( 0, cnt );
	}
	if(cnt<cnts)text2 += "...";
	return text2;
}