///////////////////////////////////////////////////////////////////////////////

function addNetscapePanel()
{
	if ((typeof window.sidebar == "object") && (typeof window.sidebar.addPanel == "function"))
	{
		window.sidebar.addPanel ("Don's Website", "http://members.shaw.ca/dongrout/Sidebar.htm","");
	}
	else
	{
		var rv = window.confirm ("This page is enhanced for use with Netscape 6.  " + "Would you like to upgrade now?");
		if (rv)
			document.location.href = "http://home.netscape.com/download/index.html";
	}
}

///////////////////////////////////////////////////////////////////////////////

function WhatHappenedToday()
{
	var dateObj = new Date();
	var nMonth = dateObj.getMonth() + 1;
	var nDay = dateObj.getDate();

	var strMonthAbbrev;
	var strMonthFull;
	if (nMonth ==  1) { strMonthAbbrev = "jan"; strMonthFull = "January"; }
	if (nMonth ==  2) { strMonthAbbrev = "feb"; strMonthFull = "February"; }
	if (nMonth ==  3) { strMonthAbbrev = "mar"; strMonthFull = "March"; }
	if (nMonth ==  4) { strMonthAbbrev = "apr"; strMonthFull = "April"; }
	if (nMonth ==  5) { strMonthAbbrev = "may"; strMonthFull = "May"; }
	if (nMonth ==  6) { strMonthAbbrev = "jun"; strMonthFull = "June"; }
	if (nMonth ==  7) { strMonthAbbrev = "jul"; strMonthFull = "July"; }
	if (nMonth ==  8) { strMonthAbbrev = "aug"; strMonthFull = "August"; }
	if (nMonth ==  9) { strMonthAbbrev = "sep"; strMonthFull = "September"; }
	if (nMonth == 10) { strMonthAbbrev = "oct"; strMonthFull = "October"; }
	if (nMonth == 11) { strMonthAbbrev = "nov"; strMonthFull = "November"; }
	if (nMonth == 12) { strMonthAbbrev = "dec"; strMonthFull = "December"; }

	var strDay;
	if (nDay < 10) strDay = "0" + nDay;
	else strDay = nDay;

	var strDaySuffix;
	if (nDay == 1 || nDay == 21 || nDay == 31) strDaySuffix = "st";
	if (nDay == 2 || nDay == 22) strDaySuffix = "nd";
	if (nDay == 3 || nDay == 23) strDaySuffix = "rd";
	if ((nDay >= 4 && nDay <= 20) || (nDay >= 24 && nDay <= 30)) strDaySuffix = "th";

	document.write('<h3><a name="What_Happened"></a><a href="http://www.andibradley.com/whatya/' + strMonthAbbrev + strDay + '.htm"><font color="#800000">What Happened All Those Years Ago on ' + strMonthFull + ' ' + nDay + strDaySuffix + '</font></a></h3>');
	document.write('<a href="http://www.andibradley.com/whatya/' + strMonthAbbrev + strDay + '.htm">Click here</a>');
}

///////////////////////////////////////////////////////////////////////////////

