/*"Whats new?" image script by JavaScript Kit (www.javascriptkit.com) Over 200+ free scripts here!*/
//set the below to the image you wish to use as the "new" image
			var imagetag='<img src="/design/img/buttonnew.gif" border="0">'
			var today=new Date()
			function expireat(expiredate){
			var expire=new Date(expiredate)
			if (today.getTime()<=expire.getTime())
			document.write(imagetag)
			}

