function getCalendarLeft(nMonth, nYear, cLANG_PATH)
{
  var ajax = new HTTPRequest;
  ajax.get(cLANG_PATH+'column/calendar.asp?cal_month='+nMonth+'&cal_year='+nYear+'&lang='+cLANG_PATH,null,getCalendarLeftResult,true);
  return false;
}

function getCalendarLeftResult(r){
  if(r.readyState==4){
    document.getElementById('calendar').innerHTML  = r.responseText;
  }
}

function getCalendarMasRight(nMonth, nYear, cLANG_PATH) {
    var ajax = new HTTPRequest;
    ajax.get(cLANG_PATH + 'column/calendarMas.asp?cal_month=' + nMonth + '&cal_year=' + nYear + '&lang=' + cLANG_PATH, null, getCalendarLeftResult, true);
    return false;
}

function getCalendarMAS(nMonth, nYear, cLANG_PATH) {
    var ajax = new HTTPRequest;
    ajax.get(cLANG_PATH + 'column/calendarMAS.asp?cal_month=' + nMonth + '&cal_year=' + nYear + '&lang=' + cLANG_PATH, null, getCalendarLeftResult, true);
    return false;
}
