today=new Date();
currentMonth=(today.getMonth()+1);
currentYear=y2k(today.getYear());
MonthArray=["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
for (i=0; i<14; i++){
	strCurrentMonth=currentMonth.toString();
	if(strCurrentMonth.length<2) strCurrentMonth="0"+strCurrentMonth;
	tmp_value=(ISODateValue)? strCurrentMonth.toString()+currentYear:+currentYear+strCurrentMonth.toString();
	document.write('<option value="'+tmp_value+'">'+MonthArray[(currentMonth-1)]+' '+currentYear+'</option>\n');
	if(currentMonth==MonthArray.length) {
		currentMonth=1;
		currentYear++;
	}
	else currentMonth++;
}