// txtcountdown.js
	var today = new Date()
	var targetDate = new Date("04/07/2006") //use full year 
	var timeBeforeTarget = Math.floor(( targetDate.getTime()
		- today.getTime()) / 86400000)
	var msg = "<center><h3>"
		+ "Note:&nbsp; I'll be the ''featured artist'' at Gallery Central beginning April&nbsp;7th "
		+ "with a reception from 5:00pm 'til 9:00pm during Gallery Walk.&nbsp;&nbsp; "
		+ "My paintings will be featured through the end of April.&nbsp;&nbsp; "
		+ "<br>There are only "
		+ (timeBeforeTarget +1)  
		+ " days until the opening!&nbsp;&nbsp; "
		+ "</h3></center>"
	if (timeBeforeTarget > 0) 
	{
		document.write(msg)
	}
	else
	{
		var today = new Date()
		var targetDate = new Date("04/30/2006") //use full year 
		var timeBeforeTarget = Math.floor(( targetDate.getTime()
			- today.getTime()) / 86400000)
		var msg = "<center><h3>"
			+ "Note:&nbsp; I am the ''featured artist'' at Gallery Central.&nbsp;&nbsp; "
			+ "My paintings are being featured through the end of April.&nbsp;&nbsp; "
			+ "<br>There are only "
			+ (timeBeforeTarget +1)  
			+ " days left to see them!&nbsp;&nbsp; "
			+ "</h3></center>"
		if (timeBeforeTarget > 0) document.write(msg)
	}