function GetSchedule()
{
	TimeStamp = new Date();
	This_Year = TimeStamp.getYear();
	This_Month = TimeStamp.getMonth() + 1;
	This_Date = TimeStamp.getDate();
	Recorded_Date = "month_" + This_Month;
	
	DayArray = new Array("日","月","火","水","木","金","土");
	CulcDayOfWeek = new Date(This_Year,This_Month-1,eval(Recorded_Date));
	This_Day = CulcDayOfWeek.getDay();
	if (This_Month == 1)
	{
			Display_Month = 12;
	}
	else
	{
			Display_Month = This_Month - 1;
	}
	if (eval(Recorded_Date) >= This_Date)
	{
			document.write(Display_Month + '月分の引き落としは<font color="#FF0000">' + This_Month + '月' + eval(Recorded_Date) + '日（' + DayArray[This_Day] + '）</font>です。');
	}
}

