<!--hide
function showMoon() {
	var height=1;
	var size = 40;
	var i;
	var currentDate  = new Date();
	var x = currentDate;
//	currentDate.setTime(currentDate.getTime() + (currentDate.getTimezoneOffset()*60000));
	currentDate.setTime(currentDate.getTime() + (currentDate.getTimezoneOffset()*60000));
	var blueMoonDate = new Date(96, 1, 4, 0, 57, 33);

//	var lunarPeriod  = 29*(24*3600*1000) + 12*(3600*1000) + 44.05*(60*1000);
	var lunarPeriod  = 29*(24*3600*1000) + 12*(3600*1000) + 44.05*(60*1000);
	
	//alert('LunarPeriod:' + lunarPeriod);
	
	var moonPhaseTime = (currentDate.getTime() - blueMoonDate.getTime()) % lunarPeriod;
	
	//alert ('currentdate.gettime:' + currentDate.getTime());
	//alert ('bluemoondate.gettime:' + blueMoonDate.getTime());
	//alert ('Diff:' + (currentDate.getTime() - blueMoonDate.getTime()));
	//alert ('MoonPhaseTime:' + moonPhaseTime);

//	var nextFull = 29 - Math.round((lunarPeriod-moonPhaseTime)/(24*3600*1000));
	var nextFull = 29 - Math.round((lunarPeriod-moonPhaseTime)/(24*3600*1000));
	
	//alert ('Next Full Moon in ' + nextFull + ' day(s)');
	
	var altText = "The Moon";
	
	switch(nextFull)
	{
		case 0:  {altText = "Full Moon"; break}
		case 1:  {altText = "Waning Gibbous"; break}
		case 2:  {altText = "Waning Gibbous"; break}
		case 3:  {altText = "Waning Gibbous"; break}
		case 4:  {altText = "Waning Gibbous"; break}
		case 5:  {altText = "Waning Gibbous"; break}
		case 6:  {altText = "Waning Gibbous"; break}
		case 7:  {altText = "Third Quarter Moon"; break}
		case 8:  {altText = "Waning Crescent"; break}
		case 9:  {altText = "Waning Crescent"; break}
		case 10: {altText = "Waning Crescent"; break}
		case 11: {altText = "Waning Crescent"; break}
		case 12: {altText = "Waning Crescent"; break}
		case 13: {altText = "Waning Crescent"; break}
		case 14: {altText = "Waning Crescent"; break}
		case 15: {altText = "New Moon"; break}
		case 16: {altText = "Waxing Crescent"; break}
		case 17: {altText = "Waxing Crescent"; break}
		case 18: {altText = "Waxing Crescent"; break}
		case 19: {altText = "Waxing Crescent"; break}
		case 20: {altText = "Waxing Crescent"; break}
		case 21: {altText = "First Quarter Moon"; break}
		case 22: {altText = "Waxing Gibbous"; break}
		case 23: {altText = "Waxing Gibbous"; break}
		case 24: {altText = "Waxing Gibbous"; break}
		case 25: {altText = "Waxing Gibbous"; break}
		case 26: {altText = "Waxing Gibbous"; break}
		case 27: {altText = "Waxing Gibbous"; break}
		case 28: {altText = "Waxing Gibbous"; break}
		case 29: {altText = "Full Moon"; break}
		default: { altText = "Moon"; break }
	}

//	document.write(	"<center><img width=75 height=75 border=0 src=http://www.solarius.net/images/msas/moonphase/",nextFull,".gif alt='",altText,"'></center>","<p class=LastRevised align=center>Today's Moon</p>");
	document.write(	"<center><img width=75 height=75 border=0 src=http://www.solarius.net/images/msas/moonphase/",nextFull,".gif alt='",altText,"'></center>","");
}
// -->
