function reportList($reports)
{
    ?>
    <ol class="pat-reports">
    <?php 
    foreach ($reports as $report) {
        reportListItem($report);
    }
    ?>
    </ol>
<?php 
}
} else {
    ?>
        <p>No information found.</p>
        <?php 
}
?>
    </div>

    <div class="list">
        <h3>More information linked to your Facebook friends</h3>
        <?php 
if ($reports_about_friends) {
    ?>
        <ul class="friends">
        <?php 
    foreach ($reports_about_friends as $x) {
        reportListItem($x);
    }
    ?>
        </ul>
        <!--<p><a href="TK_LINK">See all</a></p>-->
        <?php 
} else {
    ?>
        <p>No information found.</p>
        <?php 
}
?>
    </div>
</section>