function getCalender(url)
{
    var CalenderAjax = new Ajax.Updater(
        'calenderBody',
        url,
        {
            method: 'get',
            onFailure: reportError
        }
    );
}

function reportError()
{
    alert('Sorry. There was an error.');
}

