// show today's date in the header part
function showDate(plaintext)
{
	var time = new Date();
	var intYear = time.getFullYear();
	var intMonth = time.getMonth();
	var intDate = time.getDate();
	var strToday;
	
	switch(intMonth)
	{
		case 0:
			strMonth = "January";
			break;
		case 1:
			strMonth = "February";
			break;
		case 2:
			strMonth = "March";
			break;
		case 3:
			strMonth = "April";
			break;
		case 4:
			strMonth = "May";
			break;
		case 5:
			strMonth = "June";
			break;
		case 6:
			strMonth = "July";
			break;
		case 7:
			strMonth = "August";
			break;
		case 8:
			strMonth = "September";
			break;
		case 9:
			strMonth = "October";
			break;
		case 10:
			strMonth = "November";
			break;
		case 11:
			strMonth = "December";
			break;
	 }
		 
	strToday = strMonth + " " + intDate + ", " + intYear;
	
	
	if (plaintext == 1) 
	{
		document.write(strToday);
	}
	else
	{		 
		document.write("<span class=date>" + strToday + "</span>");
	}
	
}


//Floating Back to Top button. Called on Scroll
function ReturnLink()
{
document.body.insertAdjacentHTML('BeforeEnd', '<DIV STYLE="position:absolute; Bottom:15px; LEFT:700px" ID="Top"> <TABLE BORDER="0" CELLPADDING="0"><TR><TD><a href="#top"><img border="0" src="mms-e65x320.jpg"></a></TD></TR></TABLE></DIV>');
}

