﻿function GoPrevMonth()
{
    var v = calResults.VisibleDate;
    var newVisibleDate = new Date(v.getFullYear(), v.getMonth()-1, 1);
    calResults.SetVisibleDate(newVisibleDate);
}

function GoNextMonth()
{
    var v = calResults.VisibleDate;
    var newVisibleDate = new Date(v.getFullYear(), v.getMonth()+1, 1);
    calResults.SetVisibleDate(newVisibleDate);
}

function GetDateResults()
{
	callbResults.Callback();
}