#!/usr/bin/perl
use File::Copy;

$|=1;




($sec,$min,$hour,$mday,$mon,$year) = localtime(time);
$year += 1900;
$mon++;
if(length($mon) == 1) { $mon = "0".$mon;}




require "blendcommon.cgi";
PrintHeader();



if(-e "$dirworks/$year/$mon"){
    $index = "/blend/works/$year/$mon";
} else {
    $index = "noworksyet.html";
}



print<<__EOQ__;

<HEAD>
<TITLE>Blender of Love's NewMatic Viewer</TITLE>
</HEAD>


<FRAMESET COLS="220,*" ROWS="100%">
        <FRAME NAME="newmaticlist" SRC="$index">
        <FRAME NAME="newmaticview" SRC="latestfiller.cgi">
</FRAMESET><noframes></noframes>

__EOQ__

