Код:function SearchTextEcho($text, $word)
{
  $mytext = "";
	$text = str_replace("&", "&", $text);
	if ($word)
	{
		$tmptext = istrpos($text,$word);
		$word = substr($text,$tmptext,strlen($word));
		if ($tmptext !== FALSE)
		{
		  if ($tmptext >= 70)
		  {
		    $mytext = NC_CutWord(substr($text,$tmptext-70,70), 'first');
			  $mytext2 = NC_CutWord(substr($text,$tmptext+strlen($word),strlen($word)+70), 'last');
			  return "… ".$mytext." <font style='background-color:#fbe99f;'>".$word."</font>".$mytext2." …";
		  }
		  elseif ($tmptext < 70)
		  {
		    $mytext = substr($text,0,$tmptext);
			  $mytext2 = NC_CutWord(substr($text,$tmptext+strlen($word),strlen($word)+70), 'last');
			  return $mytext." <font style='background-color:#fbe99f;'>".$word."</font>".$mytext2." …";
		  }
		}
	}
	return $mytext;
}