//h”‘ƒKƒWƒFƒbƒg@ŒŽ
function stayMonth(){
	myDate = new Date();
	theDate = myDate.getDate();
	//myDate.setDate(theDate + 1);

	theYear = myDate.getFullYear();
	theMonth = myDate.getMonth() + 1;

	for(i=0; i<6; i++){

		if(theMonth > 12){
			theYear++;
			theMonth = 1;
		}

		if(theMonth < 10){
			MM = "0" + theMonth;
		}else{
			MM = theMonth;
		}

		document.write('<option value="' + theYear + '/' + MM + '/01">' + theYear + '”N ' + theMonth + 'ŒŽ</option>');
		theMonth++;
	}
}

//h”‘ƒKƒWƒFƒbƒg@“ú
function stayDay(){
	myDate = new Date();
	theDate = myDate.getDate();
	//myDate.setDate(theDate + 1);

	theDate = myDate.getDate();

	for(i=1; i<=31; i++){
		if(i == theDate){
			document.write('<option value="' + i + '" selected>' + i + '“ú</option>');
		}else{
			document.write('<option value="' + i + '">' + i + '“ú</option>');
		}
	}
}


//”wŒiIE6‘Îô
try { 
document.execCommand('BackgroundImageCache', false, true); 
} catch(e) {}
