
function LeftMenu( ArrMenu, ArrThisMenu, Columns ) {

	// ×ó±ßË«Ç×²Ëµ¥µÄ¿í¶È
	LeftMenuWidth = 180;

	with ( document ) {

		write ("<TD class=maincenter vAlign=top width=180 height=\"100%\" style=\"background-image:url(../Templet/C/6/left.gif); background-repeat:no-repeat; background-position:bottom; table-layout:fixed; word-break:break-all;\">");
		write ("  <TABLE cellSpacing=0 cellPadding=0 width=\"180\" border=0>");
		write ("    <TR>");
		write ("      <TD class=centercell width=\"100%\">");
		write ("	<table cellSpacing=0 cellPadding=0 width=\"100%\" height=\"100%\" border=0>");
		write ("	  <tr height=1 bgcolor=\"#000000\"><td></td></tr>");
		write ("	</table>");
		write ("      </td>");
		write ("    </tr>");

		write ("    <TR>");
		write ("      <TD colSpan=2 height=20 width=\"100%\">");
		write ("        <DIV align=center>");
		write ("	<TABLE align=center border=0 cellPadding=0 cellSpacing=0 height=101 width=\"100%\">");

		PrintLeftMenu(
				ArrMenu,
				ArrThisMenu,
				Columns,
				26,
				"",
				"",
				"",
				"#EFEFEF",
				"#FFFFFF",
				"#878698",
				"#FF0000"
			);


		write ("	</TABLE>");
		write ("	</DIV>");
		write ("      </TD>");
		write ("    </TR>");
		write ("  </TABLE>");
		write ("</TD>");
	}
}



