now = new Date
thisYr = now.getYear()
	if (thisYr < 1900 ) {
	thisYr = thisYr+1900
	}
nextYr = thisYr + 1
scday = new Date(thisYr,4,20) /* May 21, 2003 = (thisYr,4,21) */
if (scday.getTime() < now.getTime()){
	scday.setYear(nextYr)
	}
function dayToDays(inTime){
	return (Math.floor(inTime.getTime() / (1000 * 60 * 60 * 24)))
	}
function daysTill(inDate) {
	return dayToDays(inDate) - dayToDays(now)
	}
