<?php
  require_once( "Cabeza5.inc" );
?>
  <body>
    <?php
      function TagWrap( $Etiqueta, $txt, $func = "" )
      {
        if( ! empty( $txt ) && function_exists( $func ) )
          $txt = $func( $txt );
        return "<$Etiqueta>$txt</$Etiqueta>\n";
      }

      function Underline( $txt )
      {
        return "<span style=\"text-decoration:underline;\">$txt</span>";
      }

      print( "<p class=\"SubTitleFont\">" .
                TagWrap( 'strong', "Con la etiqueta STRONG" ) .
               "<br />" . 
                TagWrap( 'em', "Con las etiquetas EMPHASIZE y subrayar",
                 "Underline" ) .
               "<br />" .
                TagWrap( 'em', 'A dentro de comillas con la etiqueta EMPHASIZE',
                  create_function( '$txt', 'return "&quot;$txt&quot;";' ) ) .
             "</p>" );
      require_once( "incPie5.php" );
    ?>