<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>庆亮的博客-webgame架构 &#187; js</title>
	<atom:link href="http://www.qingliangcn.com/tag/js/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.qingliangcn.com</link>
	<description>关注LAMP&#124;PHP源代码分析&#124;web架构&#124;PHP扩展&#124;Erlang&#124;服务端架构</description>
	<lastBuildDate>Fri, 10 Jun 2011 04:10:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Javascript 修改与获得style</title>
		<link>http://www.qingliangcn.com/2009/06/javascript-%e4%bf%ae%e6%94%b9%e4%b8%8e%e8%8e%b7%e5%be%97style/</link>
		<comments>http://www.qingliangcn.com/2009/06/javascript-%e4%bf%ae%e6%94%b9%e4%b8%8e%e8%8e%b7%e5%be%97style/#comments</comments>
		<pubDate>Tue, 30 Jun 2009 09:49:24 +0000</pubDate>
		<dc:creator>庆亮</dc:creator>
				<category><![CDATA[HTML/CSS/JS]]></category>
		<category><![CDATA[currentStyle]]></category>
		<category><![CDATA[getComputedStyle]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[style]]></category>

		<guid isPermaLink="false">http://www.nd21.com/?p=80</guid>
		<description><![CDATA[当我们不使用框架时,&#160;经常使用如下的方法修改某个元素的样式. document.getElementById(&#39;test&#39;).style.color&#160;=&#160;&#39;red&#39;; document.getElementById(&#39;test&#39;).style.left&#160;&#160;=&#160;&#39;15px&#39;; 基本上每个css属性,&#160;javascript都有一个对应的style键名对应,&#160;如&#160;top,&#160;font,&#160;对于css中的带有&#160;-&#160;的属性如font-size等,&#160;则改成驼峰命名式即可.&#160;例: document.getElementById(&#39;test&#39;).style.fontSize&#160;=&#160;&#39;14px&#39;; 记住,&#160;写上px这样的单位是个好习惯,&#160;因为在某些css模式下,&#160;不写单位,&#160;浏览器会因为不知道具体的单位标准而不做任何事情. 在读取时,&#160;使用style属性就不见得一定有用了.&#160;如下面的两端代码: 代码一: &#60;script&#160;type=&#34;text/javascript&#34;&#62; alert(document.getElementById(&#39;test&#39;).sytle.left); &#60;/script&#62; &#60;style&#160;type=&#34;text/css&#34;&#62; #test&#160;{left:&#160;10px;&#160;position:absolute;} &#60;/style&#62; 代码二: &#60;html&#62; &#60;head&#62; &#60;meta&#160;http-equiv=&#34;Content-Type&#34;&#160;content=&#34;text/html;&#160;charset=iso-8859-1&#34;&#62; &#60;title&#62;Untitled&#160;Document&#60;/title&#62; &#60;script&#160;type=&#34;text/javascript&#34;&#62; alert(document.getElementById(&#39;test&#39;).sytle.left); &#60;/script&#62; &#60;/head&#62; &#60;body&#62; &#60;div&#160;id=&#34;test&#34;&#160;style=&#34;left:10px;&#160;position:absolute;&#34;&#62;&#60;/div&#62; &#60;/body&#62; &#60;/html&#62; 第一段代码弹出空,&#160;第二段代码弹出10px. 那么如果需要读取一个元素的某些属性呢,&#160;如margin,&#160;left等呢?&#160;有两种方式:&#160; 1.&#160;currentStyle(IE&#160;Only)&#160;&#160; 2.&#160;window.getComputedStyle()&#160;[W3C标准,&#160;&#160;Mozilla和Opera支持]. 代码一: document.getElementById(&#39;test&#39;).currentStyle.left; 代码二: var&#160;x&#160;=&#160;document.getElementById(&#39;test&#39;); alert(window.getComputedStyle(x,null).color); 更多内容请参考&#60;&#60;ppk谈JavaScript&#62;&#62;]]></description>
			<content:encoded><![CDATA[<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">当我们不使用框架时<font face="Times New Roman">,&nbsp;</font><font face="宋体">经常使用如下的方法修改某个元素的样式</font><font face="Times New Roman">.</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10pt; mso-spacerun: 'yes'">&#39;test&#39;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">).</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">style</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">color</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10pt; mso-spacerun: 'yes'">&#39;red&#39;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10pt; mso-spacerun: 'yes'">&#39;test&#39;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">).</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">style</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">left</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10pt; mso-spacerun: 'yes'">&#39;15px&#39;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">基本上每个<font face="Times New Roman">css</font><font face="宋体">属性</font><font face="Times New Roman">,&nbsp;javascript</font><font face="宋体">都有一个对应的</font><font face="Times New Roman">style</font><font face="宋体">键名对应</font><font face="Times New Roman">,&nbsp;</font><font face="宋体">如&nbsp;</font><font face="Times New Roman">top,&nbsp;font,&nbsp;</font><font face="宋体">对于</font><font face="Times New Roman">css</font><font face="宋体">中的带有&nbsp;</font><font face="Times New Roman">-&nbsp;</font><font face="宋体">的属性如</font><font face="Times New Roman">font-size</font><font face="宋体">等</font><font face="Times New Roman">,&nbsp;</font><font face="宋体">则改成驼峰命名式即可</font><font face="Times New Roman">.&nbsp;</font><font face="宋体">例</font><font face="Times New Roman">:</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; text-indent: 36pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10pt; mso-spacerun: 'yes'">&#39;test&#39;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">).</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">style</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">fontSize</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10pt; mso-spacerun: 'yes'">&#39;14px&#39;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">;</span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; text-indent: 36pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">记住<font face="Times New Roman">,&nbsp;</font><font face="宋体">写上</font><font face="Times New Roman">px</font><font face="宋体">这样的单位是个好习惯</font><font face="Times New Roman">,&nbsp;</font><font face="宋体">因为在某些</font><font face="Times New Roman">css</font><font face="宋体">模式下</font><font face="Times New Roman">,&nbsp;</font><font face="宋体">不写单位</font><font face="Times New Roman">,&nbsp;</font><font face="宋体">浏览器会因为不知道具体的单位标准而不做任何事情</font><font face="Times New Roman">.</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="text-align: left; margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">在读取时<font face="Times New Roman">,&nbsp;</font><font face="宋体">使用</font><font face="Times New Roman">style</font><font face="宋体">属性就不见得一定有用了</font><font face="Times New Roman">.&nbsp;</font><font face="宋体">如下面的两端代码</font><font face="Times New Roman">:</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="text-align: left; margin-top: 0pt; text-indent: 36pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="text-align: left; margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">代码一<font face="Times New Roman">:</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">script</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(255,0,0); font-size: 10pt; mso-spacerun: 'yes'">type</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&quot;text/javascript&quot;&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">alert</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10pt; mso-spacerun: 'yes'">&#39;test&#39;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">).</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">sytle</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">left</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">script</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">style</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(255,0,0); font-size: 10pt; mso-spacerun: 'yes'">type</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&quot;text/css&quot;&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">#test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; font-weight: bold; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">left</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; font-weight: bold; mso-spacerun: 'yes'">:</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">10px</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; font-weight: bold; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">position</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; font-weight: bold; mso-spacerun: 'yes'">:</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">absolute</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; font-weight: bold; mso-spacerun: 'yes'">;}</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="text-align: left; margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">style</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="text-align: left; margin-top: 0pt; text-indent: 36pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="text-align: left; margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">代码二<font face="Times New Roman">:</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">html</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">head</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">meta</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(255,0,0); font-size: 10pt; mso-spacerun: 'yes'">http-equiv</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&quot;Content-Type&quot;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(255,0,0); font-size: 10pt; mso-spacerun: 'yes'">content</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&quot;text/html;&nbsp;charset=iso-8859-1&quot;&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">title</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">Untitled&nbsp;Document</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">title</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">script</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(255,0,0); font-size: 10pt; mso-spacerun: 'yes'">type</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&quot;text/javascript&quot;&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">alert</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10pt; mso-spacerun: 'yes'">&#39;test&#39;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">).</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">sytle</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">left</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">script</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">head</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">body</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">div</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(255,0,0); font-size: 10pt; mso-spacerun: 'yes'">id</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&quot;test&quot;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(255,0,0); font-size: 10pt; mso-spacerun: 'yes'">style</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">=&quot;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">left</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; font-weight: bold; mso-spacerun: 'yes'">:</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">10px</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; font-weight: bold; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">position</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; font-weight: bold; mso-spacerun: 'yes'">:</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">absolute</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; font-weight: bold; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">&quot;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;&lt;/</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">div</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">body</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="text-align: left; margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(163,21,21); font-size: 10pt; mso-spacerun: 'yes'">html</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,255); font-size: 10pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="text-align: left; margin-top: 0pt; text-indent: 36pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="text-align: left; margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">第一段代码弹出空<font face="Times New Roman">,&nbsp;</font><font face="宋体">第二段代码弹出</font><font face="Times New Roman">10px.</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; text-indent: 36pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">那么如果需要读取一个元素的某些属性呢<font face="Times New Roman">,&nbsp;</font><font face="宋体">如</font><font face="Times New Roman">margin,&nbsp;left</font><font face="宋体">等呢</font><font face="Times New Roman">?&nbsp;</font><font face="宋体">有两种方式</font><font face="Times New Roman">:&nbsp;</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">1.&nbsp;currentStyle(IE&nbsp;Only)&nbsp;&nbsp;</span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">2.&nbsp;window.getComputedStyle()&nbsp;[W3C<font face="宋体">标准</font><font face="Times New Roman">,&nbsp;&nbsp;</font></span><span style="font-family: 'Times New Roman'; font-size: 10pt; mso-spacerun: 'yes'">Mozilla<font face="宋体">和</font><font face="Times New Roman">Opera</font><font face="宋体">支持</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">].</span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">代码一<font face="Times New Roman">:</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10pt; mso-spacerun: 'yes'">&#39;test&#39;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">).</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">currentStyle</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">left</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">;</span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">代码二<font face="Times New Roman">:</font></span><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10pt; font-weight: bold; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">x</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10pt; mso-spacerun: 'yes'">&#39;test&#39;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">alert</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">window</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">getComputedStyle</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">x</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(128,0,64); font-size: 10pt; mso-spacerun: 'yes'">null</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">).</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10pt; mso-spacerun: 'yes'">color</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Times New Roman'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Times New Roman'; font-size: 10pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10pt; mso-spacerun: 'yes'">更多内容请参考</span><span><a href="http://book.csdn.net/bookfiles/679"><span class="15" style="font-family: '宋体'; color: rgb(0,0,255); font-size: 10pt; text-decoration: underline; mso-spacerun: 'yes'">&lt;&lt;</span><span class="15" style="font-family: 'Times New Roman'; color: rgb(0,0,255); font-size: 10pt; text-decoration: underline; mso-spacerun: 'yes'">ppk<font face="宋体">谈</font><font face="Times New Roman">JavaScript</font></span><span class="15" style="font-family: '宋体'; color: rgb(0,0,255); font-size: 10pt; text-decoration: underline; mso-spacerun: 'yes'">&gt;&gt;</span></a></span></p>
<p><!--EndFragment--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.qingliangcn.com/2009/06/javascript-%e4%bf%ae%e6%94%b9%e4%b8%8e%e8%8e%b7%e5%be%97style/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>javascript之setTimeout使用详解</title>
		<link>http://www.qingliangcn.com/2009/06/javascript%e4%b9%8bsettimeout%e4%bd%bf%e7%94%a8%e8%af%a6%e8%a7%a3/</link>
		<comments>http://www.qingliangcn.com/2009/06/javascript%e4%b9%8bsettimeout%e4%bd%bf%e7%94%a8%e8%af%a6%e8%a7%a3/#comments</comments>
		<pubDate>Sat, 13 Jun 2009 10:01:13 +0000</pubDate>
		<dc:creator>庆亮</dc:creator>
				<category><![CDATA[HTML/CSS/JS]]></category>
		<category><![CDATA[暂未分类]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[setTimeout]]></category>

		<guid isPermaLink="false">http://www.nd21.com/?p=82</guid>
		<description><![CDATA[setTimeout的第一个参数为函数名或者以&#34;&#34;包含的js代码.&#160;如果是第一种情形,&#160;当函数带有参数时,&#160;往往不能达到我们预期需要的效果.&#160;文字说明比较抽象,&#160;我们来看代码: function&#160;test(){ alert(&#8216;A&#8217;); } setTimeout(test,&#160;1000);&#160;//正常,&#160;1秒后执行 b=&#34;Hello&#34;; function&#160;test2(a){ alert(a); } setTimeout(&#34;test2(b)&#34;,&#160;1000);//正常,&#160;1秒后执行 c=&#34;world&#34;; function&#160;test3(a){ alert(a); } setTimeout(test3(c),&#160;1000);&#160;//立刻执行,&#160;并没有延迟 d=&#34;haha&#34;; function&#160;test(d){ return&#160;function() { alert(a); } } setTimeout(test(d),&#160;1000);//正常,&#160;1秒后执行 在prototype.js中也有类似的应用 Function.prototype.bind&#160;=&#160;function(object){ __method&#160;=&#160;this; return&#160;function()&#160;{ __method.apply(object,&#160;arguments); } } function&#160;Test()&#160;{} Test.prototype.start&#160;&#160;=&#160;function(){ setTimeout(this.run.bind(this),&#160;1000); } Test.prototype.run&#160;=&#160;function(){ alert(&#8216;A&#8217;); this.runNext(); } Test.prototype.runNext&#160;=&#160;function(){ setTimeout(this.run.bind(this),&#160;2000); } test&#160;=&#160;new&#160;Test(); test.start(); 这样在客户端就可以循环的向服务器请求信息了(如聊天室).]]></description>
			<content:encoded><![CDATA[<div class="Section0" style="layout-grid:  15.6pt none">
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'">setTimeout<font face="宋体">的第一个参数为函数名或者以</font><font face="Times New Roman">&quot;&quot;</font><font face="宋体">包含的</font><font face="Times New Roman">js</font><font face="宋体">代码</font><font face="Times New Roman">.&nbsp;</font><font face="宋体">如果是第一种情形</font><font face="Times New Roman">,&nbsp;</font><font face="宋体">当函数带有参数时</font><font face="Times New Roman">,&nbsp;</font><font face="宋体">往往不能达到我们预期需要的效果</font><font face="Times New Roman">.&nbsp;</font><font face="宋体">文字说明比较抽象</font><font face="Times New Roman">,&nbsp;</font><font face="宋体">我们来看代码</font><font face="Times New Roman">:<span id="more-82"></span></font></span><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(){</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">alert</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;A&#8217;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">setTimeout</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">1000</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//正常,&nbsp;1秒后执行</span><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">b</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;Hello&quot;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">test2</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">a</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">){</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">alert</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">a</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">setTimeout</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;test2(b)&quot;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">1000</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//正常,&nbsp;1秒后执行</span><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">c</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;world&quot;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">test3</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">a</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">){</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">alert</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">a</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">setTimeout</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">test3</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">c</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">),</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">1000</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//立刻执行,&nbsp;并没有延迟</span><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">d</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;haha&quot;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">d</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">){</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">return</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">alert</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">a</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">setTimeout</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">d</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">),</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">1000</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//正常,&nbsp;1秒后执行</span><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'">在<font face="Times New Roman">prototype.js</font><font face="宋体">中也有类似的应用</font></span><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">prototype</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">bind</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">object</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">){</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">__method</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">this</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">return</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">__method</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">apply</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">object</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">arguments</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">prototype</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">start</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(){</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">setTimeout</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">this</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">run</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">bind</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">this</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">),</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">1000</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">prototype</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">run</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(){</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">alert</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;A&#8217;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">this</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">runNext</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">();</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">prototype</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">runNext</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(){</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">setTimeout</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">this</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">run</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">bind</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">this</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">),</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">2000</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">new</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">();</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">test</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">start</span><span style="font-family: 'Courier New'; background: rgb(255,255,255); color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">();</span><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'">这样在客户端就可以循环的向服务器请求信息了<font face="Times New Roman">(</font><font face="宋体">如聊天室</font><font face="Times New Roman">).</font></span><span style="font-family: '宋体'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
</div>
<p><!--EndFragment--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.qingliangcn.com/2009/06/javascript%e4%b9%8bsettimeout%e4%bd%bf%e7%94%a8%e8%af%a6%e8%a7%a3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FF和IE对js保留字class的支持</title>
		<link>http://www.qingliangcn.com/2009/04/ff%e5%92%8cie%e5%af%b9js%e4%bf%9d%e7%95%99%e5%ad%97class%e7%9a%84%e6%94%af%e6%8c%81/</link>
		<comments>http://www.qingliangcn.com/2009/04/ff%e5%92%8cie%e5%af%b9js%e4%bf%9d%e7%95%99%e5%ad%97class%e7%9a%84%e6%94%af%e6%8c%81/#comments</comments>
		<pubDate>Wed, 08 Apr 2009 12:05:29 +0000</pubDate>
		<dc:creator>庆亮</dc:creator>
				<category><![CDATA[HTML/CSS/JS]]></category>
		<category><![CDATA[暂未分类]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[保留字]]></category>

		<guid isPermaLink="false">http://www.nd21.com/?p=95</guid>
		<description><![CDATA[ff支持 var class(只测试了class), 而ie则不支持这样的写法. 备忘. js关键字和保留字列表 1. 关键字 break,&#160;&#160;case,&#160;&#160;catch,&#160;&#160;continue,&#160;&#160;default, delete,&#160;&#160;do,&#160;&#160;else, finally&#160;&#160;, for, function, if, in, instanceof, new, return, switch, this, throw, try, typeof, var, void, while, with 2. 保留字 abstract boolean byte char class const debugger double enum export extends fimal float goto implements import int interface long mative package private protected public short static [...]]]></description>
			<content:encoded><![CDATA[<p>ff支持 var class(只测试了class), 而ie则不支持这样的写法. 备忘.</p>
<p>js关键字和保留字列表</p>
<p>1. 关键字<br />
break,&nbsp;&nbsp;case,&nbsp;&nbsp;catch,&nbsp;&nbsp;continue,&nbsp;&nbsp;default, delete,&nbsp;&nbsp;do,&nbsp;&nbsp;else, finally&nbsp;&nbsp;, for, function, if, in, instanceof, new, return, switch, this, throw, try, typeof, var, void, while, with</p>
<p>2. 保留字<br />
abstract<br />
boolean<br />
byte<br />
char<br />
class<br />
const<br />
debugger<br />
double<br />
enum<br />
export<br />
extends<br />
fimal<br />
float<br />
goto<br />
implements<br />
import<br />
int<br />
interface<br />
long<br />
mative<br />
package<br />
private<br />
protected<br />
public<br />
short<br />
static<br />
super<br />
synchronized<br />
throws<br />
transient<br />
volatile</p>
]]></content:encoded>
			<wfw:commentRss>http://www.qingliangcn.com/2009/04/ff%e5%92%8cie%e5%af%b9js%e4%bf%9d%e7%95%99%e5%ad%97class%e7%9a%84%e6%94%af%e6%8c%81/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>自己写的日期联动菜单</title>
		<link>http://www.qingliangcn.com/2009/04/%e8%87%aa%e5%b7%b1%e5%86%99%e7%9a%84%e6%97%a5%e6%9c%9f%e8%81%94%e5%8a%a8%e8%8f%9c%e5%8d%95/</link>
		<comments>http://www.qingliangcn.com/2009/04/%e8%87%aa%e5%b7%b1%e5%86%99%e7%9a%84%e6%97%a5%e6%9c%9f%e8%81%94%e5%8a%a8%e8%8f%9c%e5%8d%95/#comments</comments>
		<pubDate>Fri, 03 Apr 2009 12:07:32 +0000</pubDate>
		<dc:creator>庆亮</dc:creator>
				<category><![CDATA[HTML/CSS/JS]]></category>
		<category><![CDATA[暂未分类]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[联动菜单]]></category>

		<guid isPermaLink="false">http://www.nd21.com/?p=97</guid>
		<description><![CDATA[&#60;!DOCTYPE&#160;html&#160;PUBLIC&#160;&#34;-//W3C//DTD&#160;XHTML&#160;1.0&#160;Transitional//EN&#34;&#160;&#34;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&#34;&#62; &#60;html&#160;xmlns=&#34;http://www.w3.org/1999/xhtml&#34;&#62; &#160;&#160;&#160;&#160;&#60;head&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#60;meta&#160;http-equiv=&#34;Content-Type&#34;&#160;content=&#34;text/html;&#160;charset=utf-8&#34;&#160;/&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#60;title&#62;Untitled&#160;Document&#60;/title&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#60;script&#160;type=&#34;text/javascript&#34;&#62; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var&#160;yearBegin&#160;=&#160;1900; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var&#160;today&#160;=&#160;new&#160;Date();&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var&#160;yearEnd&#160;=&#160;Number(today.getFullYear());&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var&#160;monthDays&#160;=&#160;[31,&#160;28,&#160;31,&#160;30,&#160;31,&#160;30,&#160;31,&#160;31,&#160;30,&#160;31,&#160;30,&#160;31]; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var&#160;monthDaysP&#160;=&#160;[31,&#160;29,&#160;31,&#160;30,&#160;31,&#160;30,&#160;31,&#160;31,&#160;30,&#160;31,&#160;30,&#160;31]; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;window.onload&#160;=&#160;function&#160;init() &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;initYear(); &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;initMonth(); &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;initDay(); &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;} &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;function&#160;writeDate(year,&#160;month,&#160;day)// &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if&#160;(year&#160;&#60;&#160;yearBegin) &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;year&#160;=&#160;yearBegin; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;} &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;else&#160;if&#160;(year&#160;&#62;&#160;yearEnd) &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;year&#160;=&#160;yearEnd; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;} &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if&#160;(month&#160;&#62;12&#160;&#124;&#124;&#160;month&#160;&#60;1) &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;month&#160;=&#160;1; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;} &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;//做个日期合法检查 &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if&#160;(IsPinYear(year)) &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if&#160;(monthDaysP[month-1]&#160;&#60;&#160;day) &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;day&#160;=&#160;monthDaysP[month-1]; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;} &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;} &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;else &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;if&#160;(monthDays[month-1]&#160;&#60;&#160;day) &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;{ &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;day&#160;=&#160;monthDays[month-1]; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;} &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;} &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var&#160;yearObj&#160;=&#160;document.getElementById(&#8216;year&#8217;); &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var&#160;monthObj&#160;=&#160;document.getElementById(&#8216;monthSelect&#8217;); &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;var&#160;dayObj&#160;=&#160;document.getElementById(&#8216;daySelect&#8217;); &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;yearObj.selectedIndex&#160;=&#160;year&#160;-&#160;yearBegin; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;monthObj.selectedIndex&#160;=&#160;month-1; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;dayObj.selectedIndex&#160;=&#160;day-1; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;} &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;function&#160;initYear() [...]]]></description>
			<content:encoded><![CDATA[<div class="Section0" style="layout-grid:  15.6pt none">
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;!DOCTYPE</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">html</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,128); font-size: 10.5pt; mso-spacerun: 'yes'">PUBLIC</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;-//W3C//DTD&nbsp;XHTML&nbsp;1.0&nbsp;Transitional//EN&quot;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot;&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">html</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">xmlns</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;http://www.w3.org/1999/xhtml&quot;&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">head</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">meta</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">http-equiv</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;Content-Type&quot;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">content</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;text/html;&nbsp;charset=utf-8&quot;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">/&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">title</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Untitled&nbsp;Document</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">title</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">script</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">type</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;text/javascript&quot;&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearBegin</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">1900</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">today</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">new</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Date</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">();</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearEnd</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Number</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">today</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getFullYear</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">());</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthDays</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">[</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">28</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">30</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">30</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">30</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">30</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">];</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthDaysP</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">[</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">29</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">30</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">30</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">30</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">30</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">31</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">];</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">window</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">onload</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">init</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">initYear();</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">initMonth();</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">initDay();</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">writeDate</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">day</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">)</span><span style="font-family: 'Courier New'; color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">if</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearBegin</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">)</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearBegin</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">else</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">if</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearEnd</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">)</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearEnd</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">if</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">12</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">||</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">1</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">)</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">1</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//做个日期合法检查</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">if</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">IsPinYear</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">))</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">if</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthDaysP</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">[</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">-1</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">]</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">day</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">)</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">day</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthDaysP</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">[</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">-1</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">];</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">else</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">if</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthDays</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">[</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">-1</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">]</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">day</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">)</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">day</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthDays</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">[</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">-1</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">];</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;year&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;monthSelect&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">dayObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;daySelect&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearObj.selectedIndex</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">-</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearBegin</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthObj.selectedIndex</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">-1</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">dayObj.selectedIndex</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">day</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">-1</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">initYear</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;year&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;monthSelect&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">dayObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;daySelect&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">for(i=yearBegin;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;=</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearEnd</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">++)</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearObj.options.add(new</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Option</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">));</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">initMonth</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;year&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;monthSelect&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">dayObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;daySelect&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">for(i=1;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;=</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">12</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">++)</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthObj.options.add(new</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Option</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">));</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">initDay</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//设置日期</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">dayObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;daySelect&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getSelMonth</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">();</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getSelYear</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">();</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">dayObj.options.length</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">0</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">if</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">IsPinYear</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">))</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">days</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthDaysP</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">[</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">-1</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">];</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">for(i=1;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;=</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">days</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">++)</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">dayObj.options.add(new</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Option</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">));</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">else</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">days</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthDays</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">[</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">month</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">-1</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">];</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">for(i=1;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;=</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">days</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">++)</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">dayObj.options.add(new</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">Option</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">,</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">i</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">));</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthChange</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">initDay();</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearChange</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//年份发生改变</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">initDay();</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getSelYear</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//获得当前选择的年</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;year&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearIndex</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearObj</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">selectedIndex</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">return</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearObj</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">options</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">[</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">yearIndex</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">].</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">value</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getSelMonth</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">()</span><span style="font-family: 'Courier New'; color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//获得当前选择的月份</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthObj</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;monthSelect&#8217;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">);</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">var</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthIndex</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthObj</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">selectedIndex</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">return</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthObj</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">options</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">[</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">monthIndex</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">].</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">value</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">function</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">IsPinYear</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">)</span><span style="font-family: 'Courier New'; color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//判断是否闰平年</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">{</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">return</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">0</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">==</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">%</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">4</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">&amp;&amp;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">%</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">100</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">!=</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">0</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">||</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">year</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">%</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">400</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">==</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,64,128); font-size: 10.5pt; mso-spacerun: 'yes'">0</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">))}</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">script</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">head</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">body</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">select</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">name</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;year&quot;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">id</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;year&quot;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">onchange</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=&quot;yearChange</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">();</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">select</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">select</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">name</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;monthSelect&quot;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">id</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;monthSelect&quot;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">onchange</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=&quot;monthChange</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">();</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">select</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">select</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">name</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;daySelect&quot;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">id</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;daySelect&quot;&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">select</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">a</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">href</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;javascript:writeDate(1987,&nbsp;9,&nbsp;7);&quot;&gt;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">19870907</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">a</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">a</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">href</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;javascript:writeDate(2987,&nbsp;9,&nbsp;7);&quot;&gt;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">不合法的日期29870907</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">a</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">script</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(255,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">type</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&#8216;text/javascript&#8217;&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//&lt;![CDATA[</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,192); font-size: 10.5pt; font-weight: bold; mso-spacerun: 'yes'">if</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">'processtime'</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">))</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">document</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">.</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">getElementById</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">(</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">'processtime'</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">).</span><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">innerHTML</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">=</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,92,0); font-size: 10.5pt; mso-spacerun: 'yes'">&quot;&lt;span&nbsp;class='runtimedisplay'&gt;Run&nbsp;in&nbsp;51&nbsp;ms,&nbsp;8&nbsp;Queries,&nbsp;Gzip&nbsp;enabled.&lt;/span&gt;&quot;</span><span style="font-family: 'Courier New'; color: rgb(92,92,92); font-size: 10.5pt; mso-spacerun: 'yes'">;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,128,0); font-size: 10.5pt; mso-spacerun: 'yes'">//]]&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">script</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,0); font-size: 10.5pt; mso-spacerun: 'yes'">&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">body</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&lt;/</span><span style="font-family: 'Courier New'; color: rgb(163,21,21); font-size: 10.5pt; mso-spacerun: 'yes'">html</span><span style="font-family: 'Courier New'; color: rgb(0,0,255); font-size: 10.5pt; mso-spacerun: 'yes'">&gt;</span><span style="font-family: 'Courier New'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
<p class="p0" style="margin-top: 0pt; margin-bottom: 0pt"><span style="font-family: 'Times New Roman'; font-size: 10.5pt; mso-spacerun: 'yes'"><o:p></o:p></span></p>
</div>
<p><!--EndFragment--></p>
]]></content:encoded>
			<wfw:commentRss>http://www.qingliangcn.com/2009/04/%e8%87%aa%e5%b7%b1%e5%86%99%e7%9a%84%e6%97%a5%e6%9c%9f%e8%81%94%e5%8a%a8%e8%8f%9c%e5%8d%95/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>


