<!--
        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</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</em></font>");
        }
}
// (c) by Manfred Renner
IMG01 = "images/arrow.gif"    //image when mouse is over the link
IMG02 = "images/notarrow.gif"  //image when mouse isn't over the link
function imgover(imgname){
     imgname.src = IMG01
}
function imgout(imgname){
  imgname.src = IMG02
}
//-->
