function gotoSche(){
	now = new Date();
	year = String(now.getFullYear());
	month = now.getMonth() +1;
	if (month < 10) mo = "0" + String(month);
		else mo = String(month);
	location.href = "sche" + String(year) + String(mo) + ".html";
}

