﻿<!-- Begin
function getPreviousCalendar(currentMonth){
var newMonth;

if (currentMonth == 0)
newMonth=11;
else newMonth = currentMonth-1;
location.href="calendar"+newMonth+".htm";
}

function getNextCalendar(currentMonth){
var newMonth;

if (currentMonth == 11)
newMonth=0;
else newMonth = currentMonth+1;
location.href="calendar"+newMonth+".htm";
}

// End -->
