function ShowCalendar()
{
  var basePath;
  var today;
  var monthNum;
  var fullPath;
  
  basePath = "calendars/youth_calendar_";
  today = new Date();
  monthNum = today.getMonth();
  
  if (monthNum == 0) {fullPath = basePath + "January.htm"}
  if (monthNum == 1) {fullPath = basePath + "February.htm"}
  if (monthNum == 2) {fullPath = basePath + "March.htm"}  
  if (monthNum == 3) {fullPath = basePath + "April.htm"}  
  if (monthNum == 4) {fullPath = basePath + "May.htm"}
  if (monthNum == 5) {fullPath = basePath + "June.htm"}
  if (monthNum == 6) {fullPath = basePath + "July.htm"}  
  if (monthNum == 7) {fullPath = basePath + "August.htm"}  
  if (monthNum == 8) {fullPath = basePath + "September.htm"}
  if (monthNum == 9) {fullPath = basePath + "October.htm"}  
  if (monthNum == 10) {fullPath = basePath + "November.htm"}
  if (monthNum == 11) {fullPath = basePath + "December.htm"}
  
  return fullPath;
}