function getCalendar(month,year)
{
	$.ajax(
	{
		type: "GET",
		url: "/execplugin/?plg=jCalendar&nosmarty=1&m="+month+"&y="+year,
		dataType:"json",
		success: function(msg)
		{
			$("#jTplOutput").setTemplateElement("jtemplate");
			if (msg)
			$("#jTplOutput").processTemplate(msg);

		}
	}
		);
}