//  NOTE that the numeric month in Javascript is from 0-11

var newimage='<img src="/images/new.gif">'
var today=new Date()
function whatsnew(yr,mon,day){
	var expire=new Date(yr,mon,day)
	if (today.getTime()<=expire.getTime())
	document.write(newimage)
}

var upimage='<img src="/images/updated.png">'
var today=new Date()
function whatsup(yr,mon,day){
	var expire=new Date(yr,mon,day)
	if (today.getTime()<=expire.getTime())
	document.write(upimage)
}

var thetune='<img src="/media/auldlang.mid">'
var thetunes='<EMBED src="/media/auldlang.mid" width=128 height=128 hidden=true type=audio/midi loop="-l" autostart="true">'
var today=new Date()
function whattune(yr,mon,day){
	var expire=new Date(yr,mon,day)
	if (today.getTime()<=expire.getTime())
	document.write(thetunes)
}


