kostyl тогда уж PHP: <? function GetTPL($tplvars,$tplname,$tplcnf=array("tpl_path"=>"/tpl","tpl_extr"=>true)){ $__res=''; ob_start(); if($tplcnf['tpl_extr']) extract($tplvars); include $tplcnf['tpl_path'].'/'.$tplname; $__res=ob_get_contents(); ob_end_clean(); return $__res; }