
	function OpenCalendar(Light) {
	var newWindowFeatures="dependent=1,Height=200,Width=200"; 
	var board=window.open("","Colors",newWindowFeatures); 
	var s=Light;
	board.document.open();
	board.focus();
board.document.write("<head>\n");
board.document.write("      \n");
board.document.write("      \n");
board.document.write("      \n");
board.document.write("<script language=\"javascript\">\n");
board.document.write("var dDate = new Date();         \n");
board.document.write("var dCurMonth = dDate.getMonth();\n");
board.document.write("var dCurDayOfMonth = dDate.getDate();\n");
board.document.write("var dCurYear = dDate.getFullYear();  \n");
board.document.write("var objPrevElement = new Object();   \n");
board.document.write("var bgcolor                          \n");
board.document.write("var webgcolor                        \n");
board.document.write("var wecolor                          \n");
board.document.write("var nwecolor                         \n");
board.document.write("var tbgcolor                         \n");
board.document.write("var ntbgcolor                        \n");
board.document.write("var sbgcolor                         \n");
board.document.write("                                     \n");
board.document.write("function fToggleColor(myElement)     \n");
board.document.write("{                                    \n");
board.document.write("	var toggleColor = \"#ff0000\";     \n");
board.document.write("	if (myElement.id == \"calDateText\")\n");
board.document.write("		{                           \n");
board.document.write("			if (myElement.color == toggleColor) \n");
board.document.write("				{                           \n");
board.document.write("					myElement.color = \"\";\n");
board.document.write("				}                              \n");
board.document.write("			else                                   \n");
board.document.write("				{                              \n");
board.document.write("					myElement.color = toggleColor;\n");
board.document.write("				}                                     \n");
board.document.write("                                                                \n");
board.document.write("		}                                                     \n");
board.document.write("	else                                                          \n");
board.document.write("		if ((myElement.id == \"calCell\") || (myElement.id == \"calTodayCell\"))\n");
board.document.write("			{                                                               \n");
board.document.write("				for (var i in myElement.children)                       \n");
board.document.write("					{                                               \n");
board.document.write("						if (myElement.children[i].id == \"calDateText\") \n");
board.document.write("							{                                        \n");
board.document.write("								if (myElement.children[i].color == toggleColor) \n");
board.document.write("									{                                       \n");
board.document.write("										myElement.children[i].color = \"\";\n");
board.document.write("									}                                          \n");
board.document.write("								else                                               \n");
board.document.write("									{                                          \n");
board.document.write("										myElement.children[i].color = toggleColor;\n");
board.document.write("									}                                                 \n");
board.document.write("							}                                                                 \n");
board.document.write("					}                                                                                 \n");
board.document.write("			}                                                                                                 \n");
board.document.write("}                                                                                                                   \n");
board.document.write("                                                                                                                    \n");
board.document.write("function fSetSelectedDay(myElement)                                                                                 \n");
board.document.write("{var range = "+s+";                                                                                                                   \n");
board.document.write("	if (myElement.id == \"calCell\")                                                                                  \n");
board.document.write("		{                                                                                                         \n");
board.document.write("			if (!isNaN(parseInt(myElement.children[\"calDateText\"].innerText)))                              \n");
board.document.write("				{                                                                                         \n");
board.document.write("					myElement.bgColor = sbgcolor;                                                     \n");
board.document.write("					objPrevElement.bgColor = ntbgcolor;                                               \n");
board.document.write("					document.all.calSelectedDate.value = parseInt(myElement.children[\"calDateText\"].innerText);\n");
board.document.write("					AnCode=document.all.tbSelYear.value+\"-\"+document.all.tbSelMonth.value+\"-\"+myElement.children[\"calDateText\"].innerText;                                       \n");
board.document.write("					range.value=AnCode;");
board.document.write("					objPrevElement = myElement;window.close();                                                                  \n");
board.document.write("				}                                                                                                    \n");
board.document.write("		}                                                                                                                    \n");
board.document.write("	if  (myElement.id == \"calTodayCell\")		{AnCode=document.all.tbSelYear.value+\"-\"+document.all.tbSelMonth.value+\"-\"+myElement.children[\"calDateText\"].innerText;	range.value=AnCode;}window.close();  \n");
board.document.write("}                                                                                                                              \n");
board.document.write("                                                                                                                               \n");
board.document.write("function fGetDaysInMonth(iMonth, iYear)                                                                                        \n");
board.document.write("{                                                                                                                              \n");
board.document.write("	var dPrevDate = new Date(iYear, iMonth, 0);                                                                                  \n");
board.document.write("	return dPrevDate.getDate();                                                                                                  \n");
board.document.write("}                                                                                                                              \n");
board.document.write("                                                                                                                               \n");
board.document.write("function fBuildCal(iYear, iMonth, iDayStyle)                                                                                   \n");
board.document.write("{                                                                                                                              \n");
board.document.write("	var aMonth = new Array();                                                                                                    \n");
board.document.write("	aMonth[0] = new Array(7);                                                                                                    \n");
board.document.write("	aMonth[1] = new Array(7);                                                                                                    \n");
board.document.write("	aMonth[2] = new Array(7);                                                                                                    \n");
board.document.write("	aMonth[3] = new Array(7);                                                                                                    \n");
board.document.write("	aMonth[4] = new Array(7);                                                                                                    \n");
board.document.write("	aMonth[5] = new Array(7);                                                                                                    \n");
board.document.write("	aMonth[6] = new Array(7);                                                                                                    \n");
board.document.write("	var dCalDate = new Date(iYear, iMonth-1, 1);                                                                                 \n");
board.document.write("	var iDayOfFirst = dCalDate.getDay();                                                                                         \n");
board.document.write("	var iDaysInMonth = fGetDaysInMonth(iMonth, iYear);                                                                           \n");
board.document.write("	var iVarDate = 1;                                                                                                            \n");
board.document.write("	var i, d, w;                                                                                                                 \n");
board.document.write("	if (iDayOfFirst==0)                                                                                                          \n");
board.document.write("		{                                                                                                                    \n");
board.document.write("			iDayOfFirst=6                                                                                                \n");
board.document.write("		}                                                                                                                    \n");
board.document.write("	else                                                                                                                         \n");
board.document.write("		{                                                                                                                    \n");
board.document.write("			iDayOfFirst=iDayOfFirst-1                                                                                    \n");
board.document.write("		}                                                                                                                    \n");
board.document.write("	if (iDayStyle == 2)                                                                                                          \n");
board.document.write("		{                                                                                                                    \n");
board.document.write("			aMonth[0][0] = \"Понедельник\";                                                                              \n");
board.document.write("			aMonth[0][1] = \"Вторник\";                                                                                  \n");
board.document.write("			aMonth[0][2] = \"Среда\";                                                                                    \n");
board.document.write("			aMonth[0][3] = \"Четверг\";                                                                                  \n");
board.document.write("			aMonth[0][4] = \"Пятница\";                                                                                  \n");
board.document.write("			aMonth[0][5] = \"Суббота\";                                                                                  \n");
board.document.write("			aMonth[0][6] = \"Воскресенье\";                                                                              \n");
board.document.write("		}                                                                                                                    \n");
board.document.write("	else                                                                                                                         \n");
board.document.write("		if (iDayStyle == 1)                                                                                                  \n");
board.document.write("			{                                                                                                            \n");
board.document.write("				aMonth[0][0] = \"Пон\";                                                                              \n");
board.document.write("				aMonth[0][1] = \"Вт\";                                                                               \n");
board.document.write("				aMonth[0][2] = \"Ср\";                                                                               \n");
board.document.write("				aMonth[0][3] = \"Чт\";                                                                               \n");
board.document.write("				aMonth[0][4] = \"Пт\";                                                                               \n");
board.document.write("				aMonth[0][5] = \"Сб\";                                                                               \n");
board.document.write("				aMonth[0][6] = \"Вск\";                                                                              \n");
board.document.write("			}                                                                                                            \n");
board.document.write("		else                                                                                                                 \n");
board.document.write("			{                                                                                                            \n");
board.document.write("				aMonth[0][0] = \"Пн\";                                                                               \n");
board.document.write("				aMonth[0][1] = \"Вт\";                                                                               \n");
board.document.write("				aMonth[0][2] = \"Ср\";                                                                               \n");
board.document.write("				aMonth[0][3] = \"Чт\";                                                                               \n");
board.document.write("				aMonth[0][4] = \"Пт\";                                                                               \n");
board.document.write("				aMonth[0][5] = \"Сб\";                                                                               \n");
board.document.write("				aMonth[0][6] = \"Вс\";                                                                               \n");
board.document.write("			}                                                                                                            \n");
board.document.write("	for (d = iDayOfFirst; d < 7; d++)                                                                                            \n");
board.document.write("		{       if (iVarDate<10) {                                                                                                            \n");
board.document.write("			aMonth[1][d] =\"0\"+ iVarDate} else {aMonth[1][d] =iVarDate}                                                                           \n");
board.document.write("			iVarDate++;                                                                                                  \n");
board.document.write("		}                                                                                                                    \n");
board.document.write("	for (w = 2; w < 7; w++)                                                                                                      \n");
board.document.write("		{                                                                                                                    \n");
board.document.write("			for (d = 0; d < 7; d++)                                                                                      \n");
board.document.write("				{                                                                                                    \n");
board.document.write("					if (iVarDate <= iDaysInMonth)                                                                \n");
board.document.write("						{       if (iVarDate<10) {                                                                                   \n");
board.document.write("							aMonth[w][d] = \"0\"+ iVarDate} else {aMonth[w][d] =iVarDate}                                                      \n");
board.document.write("							iVarDate++;                                                                  \n");
board.document.write("						}                                                                                    \n");
board.document.write("				}                                                                                                    \n");
board.document.write("		}                                                                                                                    \n");
board.document.write("	return aMonth;                                                                                                               \n");
board.document.write("}                                                                                                                              \n");
board.document.write("                                                                                                                               \n");
board.document.write("function fDrawCal(iYear, iMonth, iCellWidth, iCellHeight, sDateTextSize, sDateTextWeight, iDayStyle, ibgcolor, iwebgcolor, inwecolor, iwecolor, itbgcolor, intbgcolor, isbgcolor) \n");
board.document.write("{                                                                                                                                                                                 \n");
board.document.write("	bgcolor = ibgcolor;                                                                                                                                                             \n");
board.document.write("	webgcolor = iwebgcolor;                                                                                                                                                         \n");
board.document.write("	wecolor = iwecolor;                                                                                                                                                             \n");
board.document.write("	nwecolor = inwecolor;                                                                                                                                                           \n");
board.document.write("	tbgcolor = itbgcolor;                                                                                                                                                           \n");
board.document.write("	ntbgcolor = intbgcolor;                                                                                                                                                         \n");
board.document.write("	sbgcolor = isbgcolor;                                                                                                                                                           \n");
board.document.write("	                                                                                                                                                                                \n");
board.document.write("	var myMonth;                                                                                                                                                                    \n");
board.document.write("	myMonth = fBuildCal(iYear, iMonth, iDayStyle);                                                                                                                                  \n");
board.document.write("	document.write(\"<table border=\'0\'>\")                                                                                                                                        \n");
board.document.write("	document.write(\"<tr>\");                                                                                                                                                       \n");
board.document.write("	document.write(\"<td align=\'center\' style=\'BACKGROUND-COLOR:\"+ bgcolor +\";FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT:bold;COLOR:\"+ nwecolor +\"\'>\" + myMonth[0][0] + \"</td>\");   \n");
board.document.write("	document.write(\"<td align=\'center\' style=\'BACKGROUND-COLOR:\"+ bgcolor +\";FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT:bold;COLOR:\"+ nwecolor +\"\'>\" + myMonth[0][1] + \"</td>\");   \n");
board.document.write("	document.write(\"<td align=\'center\' style=\'BACKGROUND-COLOR:\"+ bgcolor +\";FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT:bold;COLOR:\"+ nwecolor +\"\'>\" + myMonth[0][2] + \"</td>\");   \n");
board.document.write("	document.write(\"<td align=\'center\' style=\'BACKGROUND-COLOR:\"+ bgcolor +\";FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT:bold;COLOR:\"+ nwecolor +\"\'>\" + myMonth[0][3] + \"</td>\");   \n");
board.document.write("	document.write(\"<td align=\'center\' style=\'BACKGROUND-COLOR:\"+ bgcolor +\";FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT:bold;COLOR:\"+ nwecolor +\"\'>\" + myMonth[0][4] + \"</td>\");   \n");
board.document.write("	document.write(\"<td align=\'center\' style=\'BACKGROUND-COLOR:\"+ webgcolor +\";FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT:bold;COLOR:\"+ wecolor +\"\'>\" + myMonth[0][5] + \"</td>\");  \n");
board.document.write("	document.write(\"<td align=\'center\' style=\'BACKGROUND-COLOR:\"+ webgcolor +\";FONT-FAMILY:Arial;FONT-SIZE:12px;FONT-WEIGHT:bold;COLOR:\"+ wecolor +\"\'>\" + myMonth[0][6] + \"</td>\");  \n");
board.document.write("	document.write(\"</tr>\");                                                                                                                                                                   \n");
board.document.write("	for (w = 1; w < 7; w++)                                                                                                                                                                      \n");
board.document.write("		{                                                                                                                                                                                    \n");
board.document.write("			document.write(\"<tr>\")                                                                                                                                                     \n");
board.document.write("			for (d = 0; d < 7; d++)                                                                                                                                                      \n");
board.document.write("				{                                                                                                                                                                    \n");
board.document.write("					if (myMonth[w][d]==dCurDayOfMonth)                                                                                                                           \n");
board.document.write("						{                                                                                                                                                    \n");
board.document.write("							document.write(\"<td id=calTodayCell bgcolor=\'\"+ tbgcolor +\"\' align=\'center\' valign=\'center\' width=\'\" + iCellWidth + \"\' height=\'\" + iCellHeight + \"\' style=\'CURSOR:Hand;FONT-FAMILY:Arial;FONT-SIZE:\" + sDateTextSize + \";FONT-WEIGHT:\" + sDateTextWeight + \"\' onMouseOver=\'fToggleColor(this)\' onMouseOut=\'fToggleColor(this)\' onclick=fSetSelectedDay(this)>\");\n");
board.document.write("						}                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("					else                                                                                                                                                                                                                                                                                                                                                                                                        \n");
board.document.write("						{                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("							document.write(\"<td id=calCell bgcolor=\'\"+ ntbgcolor +\"\' align=\'center\' valign=\'center\' width=\'\" + iCellWidth + \"\' height=\'\" + iCellHeight + \"\' style=\'CURSOR:Hand;FONT-FAMILY:Arial;FONT-SIZE:\" + sDateTextSize + \";FONT-WEIGHT:\" + sDateTextWeight + \"\' onMouseOver=\'fToggleColor(this)\' onMouseOut=\'fToggleColor(this)\' onclick=fSetSelectedDay(this)>\");    \n");
board.document.write("						}                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("						                                                                                                                                                                                                                                                                                                                                                                                                    \n");
board.document.write("					if (!isNaN(myMonth[w][d]))                                                                                                                                                                                                                                                                                                                                                                                  \n");
board.document.write("						{                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("							document.write(\"<font id=calDateText onclick=fSetSelectedDay(this)>\" + myMonth[w][d]);                                                                                                                                                                                                                                                                                                    \n");
board.document.write("						}                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("					else                                                                                                                                                                                                                                                                                                                                                                                                        \n");
board.document.write("						{                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("							document.write(\"<font id=calDateText onclick=fSetSelectedDay(this)>\");                                                                                                                                                                                                                                                                                                                    \n");
board.document.write("						}                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("					document.write(\"</td>\")                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("				}                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("			document.write(\"</tr>\");                                                                                                                                                                                                                                                                                                                                                                                                  \n");
board.document.write("		}                                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("	document.write(\"</table>\")                                                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("	}                                                                                                                                                                                                                                                                                                                                                                                                                                           \n");
board.document.write("	                                                                                                                                                                                                                                                                                                                                                                                                                                            \n");
board.document.write("function fUpdateCal(iYear, iMonth)                                                                                                                                                                                                                                                                                                                                                                                                            \n");
board.document.write("{                                                                                                                                                                                                                                                                                                                                                                                                                                             \n");
board.document.write("	myMonth = fBuildCal(iYear, iMonth);                                                                                                                                                                                                                                                                                                                                                                                                         \n");
board.document.write("	objPrevElement.bgColor = ntbgcolor;                                                                                                                                                                                                                                                                                                                                                                                                         \n");
board.document.write("	if (((iMonth-1)==dCurMonth) && (iYear==dCurYear))                                                                                                                                                                                                                                                                                                                                                                                           \n");
board.document.write("		{                                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("			calTodayCell.bgColor = tbgcolor                                                                                                                                                                                                                                                                                                                                                                                             \n");
board.document.write("		}                                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("	else                                                                                                                                                                                                                                                                                                                                                                                                                                        \n");
board.document.write("		{                                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("			calTodayCell.bgColor = ntbgcolor                                                                                                                                                                                                                                                                                                                                                                                            \n");
board.document.write("		}                                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("	document.all.calSelectedDate.value = \"\";                                                                                                                                                                                                                                                                                                                                                                                                  \n");
board.document.write("	for (w = 1; w < 7; w++)                                                                                                                                                                                                                                                                                                                                                                                                                     \n");
board.document.write("		{                                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("			for (d = 0; d < 7; d++)                                                                                                                                                                                                                                                                                                                                                                                                     \n");
board.document.write("				{                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("					if (!isNaN(myMonth[w][d]))                                                                                                                                                                                                                                                                                                                                                                                  \n");
board.document.write("						{                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("							calDateText[((7*w)+d)-7].innerText = myMonth[w][d];                                                                                                                                                                                                                                                                                                                                         \n");
board.document.write("						}                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("					else                                                                                                                                                                                                                                                                                                                                                                                                        \n");
board.document.write("						{                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("							calDateText[((7*w)+d)-7].innerText = \" \";                                                                                                                                                                                                                                                                                                                                                 \n");
board.document.write("						}                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("				}                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("		}                                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("}                                                                                                                                                                                                                                                                                                                                                                                                                                             \n");
board.document.write("	                                                                                                                                                                                                                                                                                                                                                                                                                                            \n");
board.document.write("</script>                                                                                                                                                                                                                                                                                                                                                                                                                                     \n");
board.document.write("                                                                                                                                                                                                                                                                                                                                                                                                                                              \n");
board.document.write("</head>                                                                                                                                                                                                                                                                                                                                                                                                                                       \n");
board.document.write("                                                                                                                                                                                                                                                                                                                                                                                                                                              \n");
board.document.write("<body>                                                                                                                                                                                                                                                                                                                                                                                                                                        \n");
board.document.write("                                                                                                                                                                                                                                                                                                                                                                                                                                              \n");
board.document.write("<script language=\"JavaScript\" for=window event=onload>                                                                                                                                                                                                                                                                                                                                                                                      \n");
board.document.write("	var dCurDate = new Date();                                                                                                                                                                                                                                                                                                                                                                                                                  \n");
board.document.write("	frmCalendar.tbSelMonth.options[dCurDate.getMonth()].selected = true;                                                                                                                                                                                                                                                                                                                                                                        \n");
board.document.write("	for (i = 0; i < frmCalendar.tbSelYear.length; i++)                                                                                                                                                                                                                                                                                                                                                                                          \n");
board.document.write("		if (frmCalendar.tbSelYear.options[i].value == dCurDate.getFullYear())                                                                                                                                                                                                                                                                                                                                                               \n");
board.document.write("			frmCalendar.tbSelYear.options[i].selected = true;                                                                                                                                                                                                                                                                                                                                                                           \n");
board.document.write("</script>                                                                                                                                                                                                                                                                                                                                                                                                                                     \n");
board.document.write("<form name=\"frmCalendar\" method=\"post\" action=\"\">                                                                                                                                                                                                                                                                                                                                                                                       \n");
board.document.write("<input type=\"hidden\" name=\"calSelectedDate\" value=\"\">                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("                                                                                                                                                                                                                                                                                                                                                                                                                                              \n");
board.document.write("<table border=\"0\" bgcolor=\"white\">                                                                                                                                                                                                                                                                                                                                                                                                        \n");
board.document.write("	<tr>                                                                                                                                                                                                                                                                                                                                                                                                                                        \n");
board.document.write("		<td align=center>                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("			<select name=\"tbSelMonth\" onchange=\'fUpdateCal(frmCalendar.tbSelYear.value, frmCalendar.tbSelMonth.value)\'>                                                                                                                                                                                                                                                                                                             \n");
board.document.write("				<option value=\"01\">Январь</option>                                                                                                                                                                                                                                                                                                                                                                                 \n");
board.document.write("				<option value=\"02\">Февраль</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"03\">Март</option>                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("				<option value=\"04\">Апрель</option>                                                                                                                                                                                                                                                                                                                                                                                 \n");
board.document.write("				<option value=\"05\">Май</option>                                                                                                                                                                                                                                                                                                                                                                                    \n");
board.document.write("				<option value=\"06\">Июнь</option>                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("				<option value=\"07\">Июль</option>                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("				<option value=\"08\">Август</option>                                                                                                                                                                                                                                                                                                                                                                                 \n");
board.document.write("				<option value=\"09\">Сентябрь</option>                                                                                                                                                                                                                                                                                                                                                                               \n");
board.document.write("				<option value=\"10\">Октябрь</option>                                                                                                                                                                                                                                                                                                                                                                               \n");
board.document.write("				<option value=\"11\">Ноябрь</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"12\">Декабрь</option>                                                                                                                                                                                                                                                                                                                                                                               \n");
board.document.write("			</select>                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("                                                                                                                                                                                                                                                                                                                                                                                                                                              \n");
board.document.write("			<select name=\"tbSelYear\" onchange=\'fUpdateCal(frmCalendar.tbSelYear.value, frmCalendar.tbSelMonth.value)\'>			                                                                                                                                                                                                                                                                                            \n");
board.document.write("				<option value=\"2000\">2000</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"2001\">2001</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"2002\">2002</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"2003\">2003</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"2004\">2004</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"2005\">2005</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"2006\">2006</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"2007\">2007</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"2008\">2008</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"2009\">2009</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("				<option value=\"2010\">2010</option>                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("                                                                                                                                                                                                                                                                                                                                                                                                                                              \n");
board.document.write("			</select>                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("		</td>                                                                                                                                                                                                                                                                                                                                                                                                                               \n");
board.document.write("	</tr>                                                                                                                                                                                                                                                                                                                                                                                                                                       \n");
board.document.write("	<tr>                                                                                                                                                                                                                                                                                                                                                                                                                                        \n");
board.document.write("		<td>                                                                                                                                                                                                                                                                                                                                                                                                                                \n");
board.document.write("			<script language=\"JavaScript\">                                                                                                                                                                                                                                                                                                                                                                                            \n");
board.document.write("				var dCurDate = new Date();                                                                                                                                                                                                                                                                                                                                                                                          \n");
board.document.write("				fDrawCal(dCurDate.getFullYear(), dCurDate.getMonth()+1, 30, 16, \"12px\", \"bold\", 3, \"gray\", \"red\", \"white\", \"white\", \"red\", \"silver\", \"#D6D6D6\");                                                                                                                                                                                                                                                  \n");
board.document.write("			</script>                                                                                                                                                                                                                                                                                                                                                                                                                   \n");
board.document.write("		</td>                                                                                                                                                                                                                                                                                                                                                                                                                               \n");
board.document.write("	</tr>                                                                                                                                                                                                                                                                                                                                                                                                                                       \n");
board.document.write("</table>                                                                                                                                                                                                                                                                                                                                                                                                                                      \n");
board.document.write("</form>                                                                                                                                                                                                                                                                                                                                                                                                                                       \n");
board.document.write("\n");                                                                                                                                                                                                                                                                                                                                                                                                                                         
	board.document.close();
	}

