<!-- 

// -- var now = new Date();
// -- var then = new Date("June 21, 2002");
// -- var gap = then.getTime() - now.getTime();
// -- gap = Math.floor(gap / (1000 * 60 * 60 * 24));
// -- if (gap>0) {
// -- 	document.write(gap + " days to the solstice");
// -- } else if (gap==0) {
// -- 	document.write("Tomorrow is solstice day");
// -- } else if (gap==-1) {
// -- 	document.write("Today is solstice day");
// -- } else {
	var now = new Date();
	var then = new Date("September 23, 2002");
	var gap = then.getTime() - now.getTime();
	gap = Math.floor((gap / (1000 * 60 * 60 * 24))+1);
	if (gap>1) {
		document.write(gap + " days to the equinox");
	} else if (gap==1) {
		document.write("Tomorrow is the equinox");
	} else if (gap==0) {
		document.write("Today is the equinox");
	} else if (gap<0) {
		document.write("Summer begins again on Jun. 21");
	}
// -- }

//-->