// JavaScript Document

	Date.prototype.getFullYear = getFullYear

	Date.prototype.getActualMonth = getActualMonth

	Date.prototype.getActualDay = getActualDay

	Date.prototype.getCalendarDay = getCalendarDay

	Date.prototype.getCalendarMonth = getCalendarMonth

	Date.prototype.getActualDate= getActualDate



function getCalendarDay() {	
	var n = this.getDay()			
	var Dow = new Array(7)
	Dow[0] = "Sunday" 			
	Dow[1] = "Monday" 			
	Dow[2] = "Tuesday" 			
	Dow[3] = "Wednesday" 			
	Dow[4] = "Thursday" 			
	Dow[5] = "Friday" 			
	Dow[6] = "Saturday" 			
	return Dow[n] 			
} 		

function getCalendarMonth() { 			
	var n = this.getMonth()			
	var moy = new Array(12)			
	moy[0] = "January" 			
	moy[1] = "February" 			
	moy[2] = "March" 			
	moy[3] = "April" 			
	moy[4] = "May" 			
	moy[5] = "June"			
	moy[6] = "July"			
	moy[7] = "August" 			
	moy[8] = "September" 			
	moy[9] = "October" 			
	moy[10] = "November" 			
	moy[11] = "December" 			
	return moy[n] 			
} 

		function getFullYear() { 
			var n = this.getYear()
			n += 0 
			return n 
		} 

		function getActualMonth() { 
			var n = this.getMonth()
			n += 1 			
			return n 
		} 

		function getActualDay() { 
			var n = this.getDay()
			n += 1 
			return n 
		} 

		function getActualDate() { 
			n=this.getDate()<10 ? "0"+this.getDate() : this.getDate();
			return n
		} 
	




