function writeSectionText(PHPRtfLite_Container_Section $sect, $arial14, $times12, $text, $text2, $text3)
{
    $sect->writeText('Sample RTF document', $arial14, new PHPRtfLite_ParFormat());
    $sect->writeText($text, $times12, new PHPRtfLite_ParFormat());
    $sect->writeText('Character encoding', $arial14, new PHPRtfLite_ParFormat());
    $sect->writeText($text2, $times12, new PHPRtfLite_ParFormat());
    $sect->writeText('Common implementations', $arial14, new PHPRtfLite_ParFormat());
    $sect->writeText($text3, $times12, new PHPRtfLite_ParFormat());
}