function showAnnounceRight()
{
	var rightAnnounce = "";
	var msg = "";
	var announceArr = new Array();
	var fldArr = new Array();
	//--------------------------------------------------------------------
	//---------- START UPDATES HERE ----------
	//--------------------------------------------------------------------
	// Modify the announcements for the right menu here by doing the following:
	// 1) The columns are separated by pipes
	// 2) The format is: title|track|location|dates
	// 3) if you need more rows to show up just copy the line at the bottom
	//    and add one to the number in brackets "[ ]"
	//--------------------------------------------------------------------

	//announceArr[0]  = "ROW1|ROW2|ROW3|";
	
	//--------------------------------------------------------------------
	//---------- STOP UPDATES HERE ----------
	//--------------------------------------------------------------------
	for ( var i = 0; i < announceArr.length; i++ )
	{
		fldArr=announceArr[i].split("|");
		msg += "<tr>";
		msg += "<td align=\"center\"><font size=\"-1\">" + fldArr[0] + "<br>" + fldArr[1] + "<br>" + fldArr[2] + "<br>" + fldArr[3] + "</font></td>";
		msg += "</tr>";
	}
	
	rightAnnounce = "<table width=\"100%\" border=\"0\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#6495ED\">";
	rightAnnounce += "<tr>";
	rightAnnounce += "<td align=\"center\"><font size=\"+1\" color=\"#FFFF00\"><b>Announcements</b></font></td>";
	rightAnnounce += "</tr>";
	rightAnnounce += "<tr><td>";
	rightAnnounce += "<table width=\"100%\" border=\"1\" cellspacing=\"0\" cellpadding=\"2\" align=\"center\" bordercolor=\"red\" bordercolordark=\"red\" bordercolorlight=\"red\" bgcolor=\"#6495ED\">";
	rightAnnounce += msg;
	rightAnnounce += "</table>";
	rightAnnounce += "</td></tr>";
	rightAnnounce += "</table>";

	return( rightAnnounce );
	
}  // end showAnnounceRight