function tagWrap( $tag, $txt, $func="" ) {
if ( function_exists( $func ) )
$txt = $func( $txt );
return "<$tag>$txt$tag>\n";
}
function subscript( $txt ) {
return "$txt";
}
print tagWrap('b', 'bold');
print tagWrap('i', 'i', "subscript");
?>