
function LeftMenu( ArrMenu, ArrThisMenu, Columns ) {

	// ×ó±ßË«Ç×²Ëµ¥µÄ¿í¶È
	LeftMenuWidth = 150;

	with ( document ) {

		write ("<td width=1 bgcolor=\"#000000\" height=\"100%\"><img src=\"\" width=1></td>");
		write ("<td width=164 align=left valign=top background=\"" + ConstHomeLinkFrom + "bg-1.gif\">");
		write ("  <table width=\"100%\" height=\"100%\" border=0 cellspacing=0 cellpadding=0>");
		write ("    <tr>");
		write ("      <td>");
		write ("	<table width=\"100%\" border=0 cellspacing=0 cellpadding=0 bgcolor=\"#000000\">");
		write ("	  <tr><td heitht=1 bgcolor=\"#000000\"></td></tr>");
		write ("	  <tr bgcolor=\"#878698\">");
		write ("	    <td width=\"100%\" height=30 align=center><font face=verdana color=\"#000000\"><b>");

		ShowDate()

		write ("	    </b></font></td>");
		write ("	  </tr>");
		write ("	  <tr><td heitht=1 bgcolor=\"#000000\"></td></tr>");
		write ("	  <tr><td heitht=1 bgcolor=\"#878698\"></td></tr>");
		write ("	  <tr><td heitht=1 bgcolor=\"#000000\"></td></tr>");
		write ("	</table>");
		write ("      </td>");
		write ("    </tr>");
		write ("    <tr>");
		write ("      <td>");
		write ("	<table width=\"100%\" border=0 cellspacing=0 cellpadding=0>");
		write ("	  <tbody>");

		PrintLeftMenu(
				ArrMenu,
				ArrThisMenu,
				Columns,
				24,
				"",
				"Title_bg_.gif",
				"Title_bg.gif",
				"",
				"",
				"",
				"#FF0000"
			);

		write ("	  </TBODY>");
		write ("	</TABLE>");
		write ("	</DIV>");
		write ("      </TD>");
		write ("    </TR>");

		write ("    <tr>");
		write ("      <td height=\"100%\" align=right vAlign=bottom>");
		write ("	<img src=\"" + ConstHomeLinkFrom + "main_r4_c1.gif\" width=164 height=230>");
		write ("      </td>");
		write ("    </tr>");

		write ("    </TBODY>");
		write ("  </TABLE>");
		write ("</TD>");
	}
}




function ShowDate() {
	var dn = "";
	var mn = "th";

	var MonthsOfYear = new Array(12);
		MonthsOfYear[0] = "January";
		MonthsOfYear[1] = "February";
		MonthsOfYear[2] = "March";
		MonthsOfYear[3] = "April";
		MonthsOfYear[4] = "May";
		MonthsOfYear[5] = "June";
		MonthsOfYear[6] = "July";
		MonthsOfYear[7] = "August";
		MonthsOfYear[8] = "September";
		MonthsOfYear[9] = "October";
		MonthsOfYear[10] = "November";
		MonthsOfYear[11] = "December";


		var Digital = new Date();
		var day = Digital.getDay();
		var mday = Digital.getDate();
		var month = Digital.getMonth();
		var year = Digital.getFullYear();

		// Fix the "mn" variable if needed:
		if (mday == 1) { mn = "st"; }
		else if (mday == 2) { mn = "nd"; }
		else if (mday == 3) { mn = "rd"; }
		else if (mday == 21) { mn = "st"; }
		else if (mday == 22) { mn = "nd"; }
		else if (mday == 23) { mn = "rd"; }
		else if (mday == 31) { mn = "st"; }

		var clk = "";
		clk += MonthsOfYear[month] + " " + mday + mn + ", " + year;
		document.write( clk );

}



