/*
 * Module mod_newscalendar For Joomla 
 * Version		: 1.0.0
 * Created by	: Jesus Vargas
 * License : GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 */

function updateNewsCalendar(curmonth,curyear,mid) 
{	
	var currentURL = window.location;
	var live_site = currentURL.protocol+'//'+currentURL.host+sfolder;
	
	var ajax = new XMLHttpRequest;
   	ajax.onreadystatechange=function()
  	{
		if (ajax.readyState==4 && ajax.status==200)
		{
			document.getElementById("newscalendar"+mid).innerHTML = ajax.responseText;
		}
  	}	
	ajax.open("GET",live_site+"/modules/mod_newscalendar/assets/ajax.php?curmonth="+curmonth+"&curyear="+curyear+"&mid="+mid,true);
	ajax.send();
}
