/*======================================================================*\
|| #################################################################### ||
|| # TWSD.pl Portal v. 1.0                                            # ||
|| # ---------------------------------------------------------------- # ||
|| # Copyright ©2000-2006 Wojciech Żyliński. All Rights Reserved.     # ||
|| # This file may not be redistributed in whole or significant part. # ||
|| #                        http://www.twsd.pl                        # ||
|| #################################################################### ||
\*======================================================================*/

function calendar_switch(month, year)
{
  var text;

  if (AJAX_Compatible)
  {
    var ajax = new vB_AJAX_Handler(true);
    ajax.onreadystatechange(function()
    {
      if (ajax.handler.readyState == 4 && ajax.handler.status == 200)
      {
        if (ajax.handler.responseXML)
        {
          var output = ajax.fetch_data(fetch_tags(ajax.handler.responseXML, 'message')[0]);

          fetch_object('calendarbox').innerHTML = output;
        }

        if (is_ie)
        {
          ajax.handler.abort();
        }
        
        sweetTitles.init();
      }
    });

    // !!attention
    ajax.send('ajax.php?do=switchcalendar', 'do=switchcalendar'
      + '&m=' + month
      + '&y=' + year
    );
  }
}

