// RUN DROP-DOWN MENUS
// Parameters: divName is the name of the dropdown to show or hide; doWhat - 1=show, 0=hide	

	function menuDrop(divName,doWhat)
		{
		if(doWhat==1)										// SHOW THE DROPDOWN
			{
			document.getElementById(divName).className="menuDropdownShow";
			}
		else
			{
			document.getElementById(divName).className="menuHideIt";
			}

		}


/* REVERSES THE VISIBILITY OF A DIV, or block of text, USING by manipulating the block's 'display' css
   'what' is the name of the div					*/

	function shdiv(what)
		{
		theState = document.getElementById(what).style.display;
		if(theState=="block")
			{
			theState="none";
			}
		else	{
			theState = "block";
			}
		document.getElementById(what).style.display = theState;
		}			



// CREATE THE DATELINE
	month = new Array(12)
	month[0] = "JANUARY";
	month[1] = "FEBRUARY";
	month[2] = "MARCH";
	month[3] = "APRIL";
	month[4] = "MAY";
	month[5] = "JUNE";
	month[6] = "JULY";
	month[7] = "AUGUST";
	month[8] = "SEPTEMBER";
	month[9] = "OCTOBER";
	month[10] = "NOVEMBER";
	month[11] = "DECEMBER";

	day = new Array(7);
	day[0] = "Sunday";
	day[1] = "Monday";
	day[2] = "Tuesday";
	day[3] = "Wednesday";
	day[4] = "Thursday";
	day[5] = "Friday";
	day[6] = "Saturday";

	now = new Date;
	theDay = day[now.getDay()];
	theMonth = month[now.getMonth()];
	theDate = now.getDate();
	theYear = now.getYear();
	theYear = "" + theYear;									// MAKE DATE OBJECT A STRING
	theYear=theYear.substring (theYear.length-2, theYear.length);		// FIX THE YEAR '100' PROBLEM
	yearPrefix = "19";
	if(theYear < 75) yearPrefix = "20";
	theDateline = theDay + ", " + theMonth + " " + theDate + ", " + yearPrefix + theYear;
	theDateline = theDateline.toUpperCase();

