//
// 日付初期値設定
//
function set_ED_date() {

	edDate = new Date();
	yy = edDate.getYear();
	mm = edDate.getMonth();
	dd = edDate.getDate();
	yy = (yy<2000) ? 1900+yy :yy;
	mm = (mm < 8 ) ?  '0'+ (mm + 1) : (mm + 1);
	dd = (dd < 9 ) ?  '0'+ (dd) : (dd);

	for(ix=0 ; ix < document.ED_DATE.ed_y.length ; ix++) {
		if(document.ED_DATE.ed_y.options[ix].value == yy) {
			document.ED_DATE.ed_y.options[ix].selected = true;
		} else {
			document.ED_DATE.ed_y.options[ix].selected = false;
		}
	}

	for(ix=0 ; ix < document.ED_DATE.ed_m.length ; ix++) {
		if(document.ED_DATE.ed_m.options[ix].value == mm) {
			document.ED_DATE.ed_m.options[ix].selected = true;
		} else {
			document.ED_DATE.ed_m.options[ix].selected = false;
		}
	}

	for(ix=0 ; ix < document.ED_DATE.ed_d.length ; ix++) {
		if(document.ED_DATE.ed_d.options[ix].value == dd) {
			document.ED_DATE.ed_d.options[ix].selected = true;
		} else {
			document.ED_DATE.ed_d.options[ix].selected = false;
		}
	}

}
