//  NOTE that the numeric month in Javascript is from 0-11


var newimage='<img src="http://www.seeley-society.net/images/new.gif" height="12">'

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="http://www.seeley-society.net/images/updated.png" height="12">'

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="http://www.seeley-society.net/media/auldlang.mid">'

var thetunes='<EMBED src="http://www.seeley-society.net/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)

}

