function list_day(sel) {
	today = new Date();
	if (sel == "now") {
		selected = today.getDate();
	} else {
		if (sel != "") {
			selected = sel;		
		} else {
			selected = 0;
		}
	}
	for(i=1; i<=31; i++) {
		if (i<10) {
			day_no = "0" + i;
		} else {
			day_no = i
		}
		if (i==selected) {
			document.write("<option value="+i+" selected>" + day_no +"</option>");
		} else {
			document.write("<option value="+i+">" + day_no +"</option>");
		}
	}
}

function list_month(sel) {
	today = new Date();
	if (sel == "now") {
		selected = today.getMonth();
		selected += 1;
	} else {
		if (sel != "") {
			selected = sel;		
		} else {
			selected = 0;
		}
	}
	var months=new Array(13);
	months[1]="January";
	months[2]="February";
	months[3]="March";
	months[4]="April";
	months[5]="May";
	months[6]="June";
	months[7]="July";
	months[8]="August";
	months[9]="September";
	months[10]="October";
	months[11]="November";
	months[12]="December";
	for(i=1; i<=12; i++) {
		if (i==selected) {
			document.write("<option value="+i+" selected>" + months[i] +"</option>");
		} else {
			document.write("<option value="+i+">" + months[i] +"</option>");
		}
	}
}

function list_year(sel, count) {
	today = new Date();
	if (sel == "now") {
		start = today.getFullYear();
	} else {
		start = sel;
	}
	for (i=start; i<(start+count); i++) {
		document.write("<option value="+i+">" + i +"</option>");
	}
}
