<!--
        setTimeout ("changePage()", 1000);
        function changePage() {
        if (self.parent.frames.length != 0)
                top.location=self.location;
        }        
/*
-----------------------------------------
|      By Mattias Sj\166berg 2/18-96       |
|You're welcome to use/edit this script.|
| Keep the comments and drop me a note. |
-----------------------------------------
|      mattias.sjoberg@swipnet.se       |
| www.geocities.com/SiliconValley/7116  |
|     Visit  The JavaScript Planet      |
-----------------------------------------
*/
function isupdate(maxdays, addDate){
        var oldDate = new Date(addDate);
        var newDate = new Date();
        var maxdaysold = maxdays*24*60*60*1000;
if ((newDate.getTime()-oldDate.getTime()) <=  maxdaysold) {
        document.write("<font size=-1><em class=new>UPDATED  " + addDate + "   </em></font>");     }
}
function isnew(maxdays, addDate){
        var oldDate = new Date(addDate);
        var newDate = new Date();
        var maxdaysold = maxdays*24*60*60*1000;
if ((newDate.getTime()-oldDate.getTime()) <=  maxdaysold) {
        document.write("<font size=-1><em class=new>N&nbsp;E&nbsp;W  " + addDate + "   </em></font>");
        }
}
//-->
