<?php
$cvs_version_tracker[]="\$Id$";  //Generated automatically - do not edit

function news_item($date, $text, $title="") {
    echo "<span class=\"news_date\">$date</span> <span class=\"news_title\">$title</span>
        <br><span class=\"news_content\">$text</span><br><br>
    ";
}

function show_news($items, $n) {
    if ($n > count($items)) {
        $n = count($items);
    }
    for ($i=0; $i<$n; $i++) {
        $date = null;
        if (isset($items[$i][2])) $date = $items[$i][2];
        news_item($items[$i][0], $items[$i][1], $date);
    }
}

function show_old_news($items, $n) {
    $tot = count($items);
    for ($i=$n; $i<count($items); $i++) {
        $j = $tot-$i;
        echo "<a name=$j></a>\n";
        news_item($items[$i][0], $items[$i][1]);
    }
}

?>