// JavaScript Document

// 現在の日付取得
function goThisTime(i) {
	thisTime = new Date();
	thisDay = thisTime.getDate();
	thisYear = thisTime.getYear();     // 年
	thisYear = (thisYear < 2000) ? thisYear+1900 : thisYear;
	thisMonth = thisTime.getMonth() + 1;  // 月
	nextMonth = thisMonth + 1;
	thisMonth = (thisMonth < 10) ? '0'+thisMonth : thisMonth;
	
	if (nextmonth < 10) {
		nextmonth = '0'+nextMonth;
	} else if (nextmonth == 13) {
		nextmonth = '01';
		thisyear++;
	}
	// nextMonth = (nextMonth < 10) ? '0'+nextMonth : nextMonth;
	
	thisDay = thisTime.getDate();     // 日
	
	var home = 'http://eco-plaza.net/schedule/';
	var theURL;
	
	if (i == 'Y') {
		theURL = home + thisYear +'/';
	} else if (i == 'M') {
		theURL = home + thisYear+'/'+thisMonth+'/';
	} else if (i == 'NM') {
		theURL = home + thisYear+'/'+nextMonth+'/';
	} else if (i == 'D') {
		theURL = home + thisYear+'/'+thisMonth+'/'+thisDay+'/';
	}
	
	window.location.href = theURL;
}


function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}