function sed_cc($text, $ent_quotes = null) {
	  global  $cfg;
    
    if ($cfg['textmode']=='html') 
    {
      return is_null($ent_quotes) ? htmlspecialchars($text) : htmlspecialchars($text, $ent_quotes);
    } else 
    {
       $text = preg_replace('/&#([0-9]{2,4});/is','&#$1;',$text);
	     $text = str_replace(
	     array('{', '<', '>' , '$', '\'', '"', '\\', '&', ' '),
	     array('{', '<', '>', '$', ''', '"', '\', '&amp;', '&nbsp;'), $text);
       return($text);     
    }
}Forever unshaven, red-eyed, detached from reality, with his cockroaches in my head. And let it always will be!