/*
-----------------------------------------
|      By Mattias Sjöberg 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 isnew(maxdays, addDate){

	var oldDate = new Date(addDate);
	var newDate = new Date();
	var maxdaysold = maxdays*24*60*60*1000;
	var psj=0;
	
	if ((newDate.getTime()-oldDate.getTime()) <=  maxdaysold) {
   		document.write("<img src=zznew.gif width=35 height=20 ALIGN=MIDDLE Alt='New'>");
	}

}