/*
//-----------------------------------------------------------//
// Protoelite CMS : Content Management System                //
// ==========================================================//
//     Programming By : Nanosoftco,CMS Team 	             //
//             Support:www.Nanosoftco.Com                    //
//         Forum: http://forum.Nanosoftco.Com                //
//         E-Mail: Info@Nanosoftco.Com   				 //
//        Copyright © 2010-2011 Nanosoftco.Com               //
// ==========================================================//                                      
// Copyright © 2009-2010 By Nanosoft ® Corporation ™         //
//-----------------------------------------------------------//
*/
function Calendar(mid,year,month,div_id,id)
{
	this.AddYear=function()
	{
		this.year++;
		this.DoAjax();
		return false;
	}
	this.SubYear=function()
	{
		this.year--;
		this.DoAjax();
		return false;
	}
	this.AddMonth=function()
	{
		this.month++;
		this.DoAjax();
		return false;
	}
	this.SubMonth=function()
	{
		this.month--;
		this.DoAjax();
		return false;
	}
	this.DoAjax=function()
	{
		t=this;
		Ajax(
				'"'+this.mid+'"',
				{
					'event':'calendar',
					'month':this.month,
					'year':this.year,
					'id':this.id
				},
				function(result)
				{
					$('#'+t.div_id).html(result['calendar']);
					t.month=result['month'];
					t.year=result['year'];
				},
				true
		)
	}
	this.mid=mid;
	this.id=id;
	this.year=year;
	this.month=month;
	this.div_id=div_id;
}
