function CalObject(){
	this._DN = [];
	this._MN = [];
	this._SDN = [];
	this._SMN = [];
	this.Date = new Date();
	this.GetDayName = function(loc){
		return this._DN[loc][this.Date.getDay()];
	}
	this.GetMonthName = function(loc){
		return this._MN[loc][this.Date.getMonth()];
	}
	this.Year = function(loc){
		return this.Date.getFullYear();
	}
	this.GetMonth = function(loc){
		return this.Date.getMonth()+1;
	}		
}
var Cal = new CalObject();