chinese_map.html 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355
  1. <html>
  2. <head>
  3. <meta content="text/html; charset=iso-8859-1" http-equiv="content-type">
  4. <LINK REL="SHORTCUT ICON" HREF="../ting.ico">
  5. <meta name="Author" content="Marilyn Shea and Kent Zhao">
  6. <META NAME="KEYWORDS" CONTENT="map, China, Chinese, Chinese language, Mandarin, Chinese dictionary, study, learn, vocabulary, English, English language, Chinese words">
  7. <meta name="DESCRIPTION" content="A map of the major provinces and regions of China -- click to hear pronunciation and see the capitals of the provinces.">
  8. <meta name="HEADER" content="Map of China - Provinces, Autonomous Regions">
  9. <title>Clickable Map of China</title>
  10. <STYLE type="text/css">
  11. <!--
  12. a {font-family: Verdana, Arial, sans-serif;}
  13. a:link { text-decoration:none; color:black; }
  14. a:visited { text-decoration:none; color:black; }
  15. a.white:link { color: white; font-weight: normal;}
  16. a.white:visited { color: white; font-weight: normal;}
  17. a.white:active { color: white; font-weight: normal;}
  18. a.white:hover { color: white; font-weight: normal;}
  19. body {margin: 0 0 0 0;}
  20. -->
  21. </STYLE>
  22. <script language="javascript">
  23. <!--
  24. var agt=navigator.userAgent.toLowerCase();
  25. var is_major = parseInt(navigator.appVersion);
  26. var is_nav = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('spoofer')==-1)
  27. && (agt.indexOf('compatible') == -1) && (agt.indexOf('opera')==-1)
  28. && (agt.indexOf('webtv')==-1));
  29. var is_nav5up = (is_nav && (is_major >= 5));
  30. var is_ie = (agt.indexOf("msie") != -1);
  31. var newsStr;
  32. var descStr;
  33. var mouseX = 0;
  34. var mouseY = 0;
  35. var index = -1;
  36. function init()
  37. {
  38. if (is_nav)
  39. document.captureEvents(Event.MOUSEMOVE);
  40. document.onmousemove=mousemove;
  41. }
  42. function mousemove(e)
  43. {
  44. if (is_nav){
  45. mouseX=e.pageX;
  46. mouseY=e.pageY; }
  47. else{
  48. mouseX=event.x;
  49. mouseY=event.y; }
  50. }
  51. function showInfo(ix) {
  52. newsStr = "<font face='Verdana,Arial,Helvetica'><img border='0' src='ball.gif'> " + english[ix] + "<br> <img border='0' src='midball.gif'> </font>";
  53. var s = chinese[ix].split(", ");
  54. newsStr += "<img border='0' src='" + s[0] + ".gif'><br> <font face='Verdana,Arial,Helvetica'><img border='0' src='ball.gif'> " + pinyin[ix] + "<br><img border='0' src='horn.gif'> </font>";
  55. var s = soundC[ix].split(",");
  56. for(x=0; x<s.length; x++){
  57. newsStr += '<a href="../Language/' + s[x] + '"><img SRC="../Language/Picture/sound.jpg" BORDER="0" height="23" width="25"></a>&nbsp;&nbsp;';
  58. }
  59. newsStr += '';
  60. var s = soundE[ix].split(",");
  61. for(x=0; x<s.length; x++){
  62. newsStr += '<a href="../Language/' + s[x] + '"><img SRC="../Language/Picture/soundbl.jpg" BORDER="0" height="23" width="25"></a>&nbsp;&nbsp;';
  63. }
  64. doit('subroot');
  65. }
  66. function desc(ix){
  67. var x = 50;
  68. var y = 20;
  69. if (ix != index){
  70. if (ix == 28)
  71. descStr = "<table border=0><tr><td bgcolor='white'><font face='Verdana,Arial,Helvetica' color='blue'>" + english[ix] + "</font></td></tr></table>";
  72. else{
  73. var s = english[ix].split(", ");
  74. descStr ="<table border=0><tr><td bgcolor='white'><font face='Verdana,Arial,Helvetica' color='blue'>" + s[1] + "</font></td></tr></table>";
  75. }
  76. if (ix == 26)
  77. y = -40;
  78. if ( is_nav5up)
  79. {
  80. document.getElementById("descr").style.left= mouseX - x;
  81. document.getElementById("descr").style.top= mouseY + y;
  82. }
  83. if ( !is_nav5up && is_nav )
  84. {
  85. document.layers["descr"].left= mouseX - x;
  86. document.layers["descr"].top= mouseY + y;
  87. }
  88. if ( is_ie)
  89. {
  90. document.all["descr"].style.left= mouseX - x;
  91. document.all["descr"].style.top= mouseY + y;
  92. }
  93. doit('descr');
  94. index = ix;
  95. }
  96. }
  97. function doit(x){
  98. if ((!is_nav5up) && is_nav)
  99. {
  100. if (x == 'subroot')
  101. eval("with (document.layers['root'].document.layers['" + x +"'].document){write(newsStr);close();}");
  102. else
  103. eval("with (document.layers['" + x +"'].document){write(descStr);close();}");
  104. }
  105. if (is_nav5up)
  106. {
  107. if (x == 'subroot')
  108. eval("document.getElementById('" + x + "').innerHTML=newsStr;");
  109. else
  110. eval("document.getElementById('" + x + "').innerHTML=descStr;");
  111. }
  112. if (is_ie)
  113. {
  114. if (x == 'subroot')
  115. eval("document.all['" + x + "'].innerHTML = newsStr;");
  116. else
  117. eval("document.all['" + x + "'].innerHTML = descStr;");
  118. }
  119. }
  120. english = new Array(
  121. "Urumqi (Wulumuchi), Xinjiang Uighur", //#0
  122. "Lhasa, Tibet", //#1
  123. "Xining, Qinghai (Chinghai)", //#2
  124. "Lanzhou (Lanchow), Gansu (Kansu)", //#3
  125. "Hohhot (Huhehot), Inner Mongolia", //#4
  126. "Yinchuan, Ningxian Huizu", // #5
  127. "Xi'an, Shaanxi", //#6
  128. "Taiyuan, Shanxi", //#7
  129. "Shijiazhuang, Hebei (Hopei)", //#8
  130. "Shenyang, Liaoning", //#9
  131. "Changchun, Jilin", //#10
  132. "Harbin, Heilongjiang (Heilongkiang)", //#11
  133. "Jinan, Shandong (Shantung)", //#12
  134. "Zhengzhou, Henan", //#13
  135. "Wuhan, Hubei", //#14
  136. "Chengdu, Sichuan (Szechwan)", //#15
  137. "Kunming, Yunnan", //#16
  138. "Guiyang, Guizhou (Kweichow)", //#17
  139. "Changsha, Hunan", //#18
  140. "Nanchang, Jiangxi", //#19
  141. "Hefei, Anhui (Anhwei)", //#20
  142. "Nanjing (Nanking), Jiangsu", //#21
  143. "Hangzhou (Hangchow), Zhejiang (Chekiang)", //#22
  144. "Fuzhou, Fujian (Fukien)", //#23
  145. "Guangzhou (Canton), Guangdong (Kwangtong)", //#24
  146. "Nanning, Guangxi Zhuangzu", //#25
  147. "Haikou, Hainan", //#26
  148. "Taibei (Taipei), Taiwan (Republic of China)", //#27
  149. "Beijing (Peking)" //#28
  150. );
  151. chinese = new Array(
  152. "0xinjiang, 新 疆 维 吾 尔 自 治 区 , 乌 鲁 木 齐 ", //#0
  153. "1xizang, 西 藏 自 治 区 , 拉 萨", //#1
  154. "2qinghai, 青 海 , 西 宁", //#2
  155. "3gansu, 甘 肃 , 兰 州", //#3
  156. "4mongolia, 内 蒙 古 自 治 区 , 呼 和 浩 特", //#4
  157. "5ningxia, 宁 夏 回 族 自 治 区 , 银 川", //#5
  158. "6shaanxi, 陕 西 , 西 安", //#6
  159. "7shanxi, 山 西 , 太 原", //#7
  160. "8hebei, 河北,石家庄", //#8
  161. "9leoning, 辽 宁 , 沈 阳", //#9
  162. "10jilin, 吉 林 , 长 春", //#10
  163. "11heilong, 黑 龙 江 , 哈 尔 滨", //#11
  164. "12shandong, 山 东 , 济 南", //#12
  165. "13henan, 河 南 , 郑 州", //#13
  166. "14hubei, 湖 北 , 武 汉", //#14
  167. "15sichuan, 四 川 , 成 都", //#15
  168. "16yunnan, 云 南 , 昆 明", //#16
  169. "17guizhou, 贵 州 , 贵 阳", //#17
  170. "18hunan, 湖 南 , 长 沙", //#18
  171. "19jiangxi, 江 西 , 南 昌", //#19
  172. "20anhui, 安 徽 , 合 肥", //#20
  173. "21jiangsu, 江 苏 , 南 京", //#21
  174. "22zhejiang, 浙 江 , 杭 州", //#22
  175. "23fujian, 福 建 , 福 州", //#23
  176. "24guangdong, 广 东 , 广 州", //#24
  177. "25guangxi, 广 西 壮 族 自 治 区 , 南 宁", //#25
  178. "26hainan, 海 南 , 海 口", //#26
  179. "27taiwan, 台 湾 , 台 北", //#27
  180. "28beijing, 北京" //#28
  181. );
  182. pinyin = new Array(
  183. "Xin1jiang1 Wei2wu2'er3zu2 Zi4zhi4qu1, Wu1lu3mu4qi2", //#0
  184. "Xi1zang4 Zi4zhi4qu1, La1sa4", //#1
  185. "Qing1hai3, Xi1ning2", //#2
  186. "Gan1su4, Lan2zhou1", //#3
  187. "Nei4meng3gu3 Zi4zhi4qu1, Hu1he2hao4te4", //#4
  188. "Ning2xia4 Hui2zu2 Zi4zhi4qu1, Yin2chuan1", //#5
  189. "Shan3xi1, Xi1'an1", //#6
  190. "Shan1xi1, Tai4yuan2", //#7
  191. "He2bei3, Shi2jia1zhuang1", //#8
  192. "Liao2ning2, Shen3yang2", //#9
  193. "Ji2lin2, Chang2chun1", //#10
  194. "Hei1long2jiang1, Ha1'er3bin1", //#11
  195. "Shan1dong1, Ji3nan2", //#12
  196. "He2nan2, Zheng4zhou1", //#13
  197. "Hu2bei3, Wu3han4", //#14
  198. "Si4chuan1, Cheng2du1", //#15
  199. "Yun2nan2, Kun1ming2", //#16
  200. "Gui4zhou1, Gui4yang2", //#17
  201. "Hu2nan2, Chang2sha1", //#18
  202. "Jiang1xi1, Nan2chang1", //#19
  203. "An1hui1, He2fei2", //#20
  204. "Jiang1su1, Nan2jing1", //#21
  205. "Zhe4jiang1, Hang2zhou1", //#22
  206. "Fu2jian4, Fu2zhou1", //#23
  207. "Guang3dong1, Guang3zhou1", //#24
  208. "Guang3xi1 Zhuang4zu2 Zi4zhi4qu1, Nan2ning2", //#25
  209. "Hai3nan2, Hai3kou3", //#26
  210. "Tai2wan1, Tai2bei3", //#27
  211. "Bei3jing1" //#28
  212. );
  213. soundC = new Array(
  214. "Sound10a/10658lqx.wav,Sound10b/10658dd.wav,Sound10c/10658wy.wav", //#0
  215. "Sound10a/10660lqx.wav,Sound10b/10660dd.wav,Sound10c/10660wy.wav", //#1
  216. "Sound10a/10624jz.wav,Sound10b/10624zn.wav,Sound10c/10624llf.wav,Sound10d/10624mz.wav", //#2
  217. "Sound10a/10622jz.wav,Sound10b/10622zn.wav,Sound10c/10622llf.wav,Sound10d/10622mz.wav", //#3
  218. "Sound10a/10654lqx.wav,Sound10b/10654dd.wav,Sound10c/10654wy.wav", //#4
  219. "Sound10a/10656lqx.wav,Sound10b/10656dd.wav,Sound10c/10656wy.wav", //#5
  220. "Sound10a/10620jz.wav,Sound10b/10620zn.wav,Sound10c/10620llf.wav,Sound10d/10620mz.wav", //#6
  221. "Sound10a/10618jz.wav,Sound10b/10618zn.wav,Sound10c/10618llf.wav,Sound10d/10618mz.wav", //#7
  222. "Sound10a/10612jz.wav,Sound10b/10612zn.wav,Sound10c/10612llf.wav,Sound10d/10612mz.wav", //#8
  223. "Sound10a/10610jz.wav,Sound10b/10610zn.wav,Sound10c/10610llf.wav,Sound10d/10610mz.wav", //#9
  224. "Sound10a/10607jz.wav,Sound10b/10607zn.wav,Sound10c/10607llf.wav,Sound10d/10607mz.wav", //#10
  225. "Sound10a/10604jz.wav,Sound10b/10604zn.wav,Sound10c/10604llf.wav,Sound10d/10604mz.wav", //#11
  226. "Sound10a/10616jz.wav,Sound10b/10616zn.wav,Sound10d/10616mz.wav", //#12
  227. "Sound10a/10614jz.wav,Sound10b/10614zn.wav,Sound10c/10614llf.wav,Sound10d/10614mz.wav", //#13
  228. "Sound10a/10634lqx.wav,Sound10b/10634dd.wav,Sound10c/10634wy.wav", //#14
  229. "Sound10a/10626jz.wav,Sound10b/10626zn.wav,Sound10c/10626llf.wav,Sound10d/10626mz.wav", //#15
  230. "Sound10a/10646lqx.wav,Sound10b/10646dd.wav,Sound10c/10646wy.wav", //#16
  231. "Sound10a/10644lqx.wav,Sound10b/10644dd.wav,Sound10c/10644wy.wav", //#17
  232. "Sound10a/10636lqx.wav,Sound10b/10636dd.wav,Sound10c/10636wy.wav", //#18
  233. "Sound10a/10638lqx.wav,Sound10b/10638dd.wav,Sound10c/10638wy.wav", //#19
  234. "Sound10a/10632jz.wav,Sound10b/10632zn.wav,Sound10c/10632llf.wav,Sound10d/10632mz.wav", //#20
  235. "Sound10a/10628jz.wav,Sound10b/10628zn.wav,Sound10c/10628llf.wav,Sound10d/10628mz.wav", //#21
  236. "Sound10a/10630jz.wav,Sound10b/10630zn.wav,Sound10c/10630llf.wav,Sound10d/10630mz.wav", //#22
  237. "Sound10a/10640lqx.wav,Sound10b/10640dd.wav,Sound10c/10640wy.wav", //#23
  238. "Sound10a/10642lqx.wav,Sound10b/10642dd.wav,Sound10c/10642wy.wav", //#24
  239. "Sound10b/10662dd.wav,Sound10c/10662wy.wav", //#25
  240. "Sound10a/10650lqx.wav,Sound10b/10650dd.wav,Sound10c/10650wy.wav", //#26
  241. "Sound10a/10648lqx.wav,Sound10b/10648dd.wav,Sound10c/10648wy.wav", //#27
  242. "Sound0a/421llf.wav,Sound0b/421fx.wav,Sound0c/421lz.wav" //#28
  243. );
  244. soundE = new Array(
  245. "Sounde10a/10658jg.wav,Sounde10b/10658ms.wav,Sounde10d/10658kd.wav", //#0
  246. "Sounde10b/10660ms.wav,Sounde10d/10660kd.wav", //#1
  247. "Sounde10a/10624jg.wav,Sounde10b/10624ms.wav,Sounde10d/10624kd.wav", //#2
  248. "Sounde10a/10622jg.wav,Sounde10b/10622ms.wav,Sounde10d/10622kd.wav", //#3
  249. "Sounde10a/10654jg.wav,Sounde10b/10654ms.wav,Sounde10d/10654kd.wav", //#4
  250. "Sounde10a/10656jg.wav,Sounde10b/10656ms.wav,Sounde10d/10656kd.wav", //#5
  251. "Sounde10a/10620jg.wav,Sounde10b/10620ms.wav,Sounde10d/10620kd.wav", //#6
  252. "Sounde10d/10618kd.wav", //#7
  253. "Sounde10d/10612kd.wav", //#8
  254. "Sounde10d/10610kd.wav", //#9
  255. "Sounde10d/10607kd.wav", //#10
  256. "Sounde10d/10604kd.wav", //#11
  257. "Sounde10d/10616kd.wav", //#12
  258. "Sounde10d/10614kd.wav", //#13
  259. "Sounde10a/10634jg.wav,Sounde10b/10634ms.wav,Sounde10d/10634kd.wav", //#14
  260. "Sounde10a/10626jg.wav,Sounde10b/10626ms.wav,Sounde10d/10626kd.wav", //#15
  261. "Sounde10a/10646jg.wav,Sounde10b/10646ms.wav,Sounde10d/10646kd.wav", //#16
  262. "Sounde10a/10644jg.wav,Sounde10b/10644ms.wav,Sounde10d/10644kd.wav", //#17
  263. "Sounde10a/10636jg.wav,Sounde10b/10636ms.wav,Sounde10d/10636kd.wav", //#18
  264. "Sounde10a/10638jg.wav,Sounde10b/10638ms.wav,Sounde10d/10638kd.wav", //#19
  265. "Sounde10a/10632jg.wav,Sounde10b/10632ms.wav,Sounde10d/10632kd.wav", //#20
  266. "Sounde10a/10628jg.wav,Sounde10b/10628ms.wav,Sounde10d/10628kd.wav", //#21
  267. "Sounde10a/10630jg.wav,Sounde10b/10630ms.wav,Sounde10d/10630kd.wav", //#22
  268. "Sounde10a/10640jg.wav,Sounde10b/10640ms.wav,Sounde10d/10640kd.wav", //#23
  269. "Sounde10a/10642jg.wav,Sounde10b/10642ms.wav,Sounde10d/10642kd.wav", //#24
  270. "Sounde10a/10662jg.wav,Sounde10b/10662ms.wav,Sounde10d/10662kd.wav", //#25
  271. "Sounde10a/10650jg.wav,Sounde10b/10650ms.wav,Sounde10d/10650kd.wav", //#26
  272. "Sounde10a/10648jg.wav,Sounde10b/10648ms.wav,Sounde10d/10648kd.wav", //#27
  273. "Sounde0a/421ms.wav,Sounde0b/421mal.wav" //#28
  274. );
  275. //-->
  276. </script>
  277. <STYLE type="text/css">
  278. <!--
  279. #root {position:relative; width:100%; top: 2px; left:0;}
  280. #subroot {position: absolute; left: 30%;}
  281. #descr {position: absolute; left:0; top:0;}
  282. -->
  283. </STYLE>
  284. </head>
  285. <body onload="init()" marginwidth="0" marginheight="0" bgcolor="#FFFFFF">
  286. <DIV ID="descr">&nbsp;</DIV>
  287. <table CELLPADDING="0" CELLSPACING="0" BORDER="0" border="0" bgcolor="#330099" height="17">
  288. <tr>
  289. <td NOWRAP="1" VALIGN=CENTER bgcolor="#330099">&nbsp;&nbsp;<font face="Verdana,Arial,Helvetica" size="1"><a class=white href="../welcome.html">Home </a></font>&nbsp;&nbsp;<font size+1><font color="#FFFFFF">|</font></font></td>
  290. <td NOWRAP="1" bgcolor="#330099">&nbsp;&nbsp;<font face="Verdana,Arial,Helvetica" size="1"><a class=white href="../../China/china.html">China Index</a></font>&nbsp;&nbsp;<font size+1><font color="#FFFFFF">|</font></font></td>
  291. <td NOWRAP="1" bgcolor="#330099">&nbsp;<font face="Verdana,Arial,Helvetica" size="1"><a class=white href="../games/games.html">Games</a></font>&nbsp;<font size+1><font color="#FFFFFF">|</font></font></td>
  292. <td NOWRAP="1" bgcolor="#330099">&nbsp;&nbsp;<font face="Verdana,Arial,Helvetica" size="1"><a class=white href="usmap.html">US Map</a></font>&nbsp;&nbsp;<font size+1><font color="#FFFFFF">|</font></font></td>
  293. <td NOWRAP="1" bgcolor="#330099">&nbsp;&nbsp;<font face="Verdana,Arial,Helvetica" size="1" color="#CCCC00">Clickable Map of China</font>&nbsp;&nbsp;<font size+1><font color="#FFFFFF">|</font></font></td>
  294. <td NOWRAP="1" bgcolor="#330099">&nbsp;&nbsp;<font face="Verdana,Arial,Helvetica" size="1"><a class=white href="provincestable.html">More Information</a></font>&nbsp;&nbsp;</td>
  295. </tr>
  296. </table>
  297. <DIV ID="root"><DIV ID="subroot"><img src="blankdot.gif" height="107px" width="520px" border="0"></DIV></DIV>
  298. <img src="blankdot.gif" height="31px" width="1px" border="0">
  299. <p align="center"><map name="FPMap0">
  300. <area href="Javascript:showInfo(0)" onmouseover="desc(0); return true;" shape="polygon" coords="192, 61, 198, 69, 211, 84, 208, 102, 213, 110, 237, 120, 253, 143, 246, 149, 246, 155, 215, 169, 214, 184, 185, 190, 195, 209, 187, 212, 191, 219, 181, 216, 157, 210, 141, 213, 119, 215, 111, 207, 101, 210, 87, 208, 78, 216, 70, 208, 69, 198, 52, 188, 54, 181, 49, 174, 43, 170, 50, 156, 42, 150, 51, 135, 66, 137, 74, 141, 87, 131, 108, 130, 115, 115, 122, 114, 120, 102, 119, 92, 132, 94, 139, 99, 142, 86, 147, 76, 163, 82, 173, 73, 175, 65, 184, 62, 186, 58">
  301. <area href="Javascript:showInfo(1)" onmouseover="desc(1); return true;" shape="polygon" coords="176, 227, 172, 234, 175, 243, 180, 263, 196, 266, 226, 280, 246, 291, 247, 279, 258, 284, 263, 316, 257, 326, 250, 324, 243, 331, 234, 326, 222, 328, 218, 333, 210, 333, 199, 339, 193, 336, 185, 321, 161, 316, 157, 323, 153, 315, 131, 310, 107, 294, 92, 277, 80, 274, 74, 262, 63, 243, 74, 235, 74, 222, 88, 216, 99, 217, 109, 217, 139, 218, 171, 219">
  302. <area href="Javascript:showInfo(2)" onmouseover="desc(2); return true;" shape="polygon" coords="216, 193, 195, 196, 203, 210, 196, 217, 195, 227, 184, 224, 182, 237, 183, 250, 240, 281, 250, 268, 248, 256, 266, 260, 281, 274, 289, 267, 283, 255, 296, 251, 303, 228, 290, 210, 268, 200, 257, 198, 249, 206, 234, 191">
  303. <area href="Javascript:showInfo(3)" onmouseover="desc(3); return true;" shape="polygon" coords="253, 152, 262, 155, 259, 164, 268, 176, 284, 179, 280, 191, 297, 202, 304, 199, 311, 202, 317, 196, 312, 213, 324, 220, 332, 244, 349, 245, 348, 227, 359, 236, 356, 245, 343, 251, 340, 265, 336, 273, 327, 277, 320, 264, 307, 257, 299, 262, 300, 269, 291, 259, 304, 251, 308, 226, 299, 208, 256, 189, 250, 197, 223, 182, 226, 171, 248, 161">
  304. <area href="Javascript:showInfo(4)" onmouseover="desc(4); return true;" shape="polygon" coords="457, 24, 460, 14, 448, 20, 452, 31, 444, 47, 446, 56, 435, 64, 424, 71, 422, 85, 451, 84, 461, 95, 435, 105, 408, 127, 394, 126, 391, 145, 328, 169, 268, 153, 270, 166, 291, 174, 289, 185, 298, 192, 322, 188, 326, 201, 318, 208, 323, 212, 340, 190, 352, 194, 351, 207, 362, 212, 379, 188, 409, 176, 409, 156, 424, 153, 435, 154, 444, 142, 455, 156, 456, 147, 490, 136, 481, 124, 470, 104, 479, 94, 474, 84, 493, 41, 468, 35">
  305. <area href="Javascript:showInfo(5)" onmouseover="desc(5); return true;" shape="polygon" coords="342, 199, 335, 210, 329, 218, 338, 240, 343, 241, 341, 222, 350, 216, 345, 198">
  306. <area href="Javascript:showInfo(6)" onmouseover="desc(6); return true;" shape="polygon" coords="341, 278, 371, 283, 372, 268, 384, 267, 381, 230, 385, 198, 367, 217, 357, 218, 354, 222, 366, 232, 363, 251, 349, 257">
  307. <area href="Javascript:showInfo(7)" onmouseover="desc(7); return true;" shape="polygon" coords="386, 249, 411, 232, 408, 208, 412, 190, 411, 184, 397, 187, 390, 205">
  308. <area href="Javascript:showInfo(8)" onmouseover="desc(8); return true;" shape="polygon" coords="441, 186, 430, 188, 434, 206, 448, 202, 450, 205, 434, 211, 427, 226, 417, 226, 418, 168, 441, 160, 442, 153, 447, 155, 448, 165, 456, 166, 461, 182, 450, 194, 445, 184">
  309. <area href="Javascript:showInfo(9)" onmouseover="desc(9); return true;" shape="polygon" coords="499, 139, 512, 149, 517, 158, 506, 170, 493, 183, 488, 185, 487, 179, 488, 163, 473, 175, 467, 172, 462, 167, 464, 155, 468, 156">
  310. <area href="Javascript:showInfo(10)" onmouseover="desc(10); return true;" shape="polygon" coords="509, 134, 519, 149, 539, 147, 540, 137, 552, 127, 561, 120, 550, 116, 540, 123, 529, 116, 518, 108, 496, 105, 491, 99, 487, 105, 479, 105, 488, 119, 499, 131">
  311. <area href="Javascript:showInfo(11)" onmouseover="desc(11); return true;" shape="polygon" coords="489, 13, 514, 51, 537, 55, 547, 67, 555, 66, 574, 50, 571, 89, 557, 97, 561, 112, 548, 109, 541, 112, 525, 105, 500, 98, 488, 92, 486, 80, 497, 52, 498, 39, 491, 29, 479, 29, 466, 21, 471, 10">
  312. <area href="Javascript:showInfo(12)" onmouseover="desc(12); return true;" shape="polygon" coords="453, 208, 470, 214, 483, 206, 500, 210, 479, 224, 472, 237, 460, 240, 455, 246, 443, 241, 440, 247, 431, 241, 439, 232, 433, 229, 439, 216">
  313. <area href="Javascript:showInfo(13)" onmouseover="desc(13); return true;" shape="polygon" coords="415, 236, 426, 238, 423, 248, 440, 256, 427, 269, 428, 277, 438, 280, 433, 287, 421, 279, 401, 276, 389, 259, 398, 249, 411, 242">
  314. <area href="Javascript:showInfo(14)" onmouseover="desc(14); return true;" shape="polygon" coords="389, 277, 405, 286, 413, 283, 439, 298, 442, 308, 425, 317, 418, 310, 408, 313, 392, 308, 374, 317, 369, 308, 383, 300, 378, 288, 384, 280, 381, 273">
  315. <area href="Javascript:showInfo(15)" onmouseover="desc(15); return true;" shape="polygon" coords="304, 265, 319, 276, 330, 285, 345, 284, 375, 296, 360, 305, 369, 322, 357, 319, 333, 328, 331, 334, 312, 325, 301, 341, 301, 352, 295, 352, 276, 325, 258, 269, 282, 284, 303, 276">
  316. <area href="Javascript:showInfo(16)" onmouseover="desc(16); return true;" shape="polygon" coords="260, 351, 243, 375, 248, 382, 257, 383, 267, 398, 264, 406, 283, 412, 289, 418, 289, 403, 327, 396, 335, 390, 322, 379, 319, 361, 311, 352, 314, 343, 325, 342, 313, 334, 303, 360, 288, 357, 274, 332, 264, 327, 259, 337">
  317. <area href="Javascript:showInfo(17)" onmouseover="desc(17); return true;" shape="polygon" coords="371, 335, 372, 341, 369, 349, 376, 354, 378, 362, 357, 370, 351, 365, 343, 371, 329, 374, 325, 361, 318, 348, 333, 346, 344, 341, 340, 334, 358, 326, 375, 335">
  318. <area href="Javascript:showInfo(18)" onmouseover="desc(18); return true;" shape="polygon" coords="393, 355, 400, 364, 399, 372, 405, 374, 409, 362, 423, 361, 419, 332, 423, 325, 416, 319, 395, 314, 378, 323, 379, 336, 377, 345, 383, 359">
  319. <area href="Javascript:showInfo(19)" onmouseover="desc(19); return true;" shape="polygon" coords="432, 362, 438, 365, 435, 371, 449, 366, 458, 332, 471, 324, 461, 310, 456, 316, 450, 311, 429, 322, 431, 329, 426, 336, 428, 361">
  320. <area href="Javascript:showInfo(20)" onmouseover="desc(20); return true;" shape="polygon" coords="445, 302, 441, 291, 444, 278, 436, 272, 447, 263, 447, 255, 457, 263, 466, 279, 473, 295, 467, 307, 459, 302">
  321. <area href="Javascript:showInfo(21)" onmouseover="desc(21); return true;" shape="polygon" coords="499, 271, 493, 265, 482, 247, 476, 242, 468, 246, 462, 251, 459, 253, 468, 257, 466, 263, 475, 265, 475, 272, 474, 279, 477, 285, 485, 282, 496, 288, 498, 279">
  322. <area href="Javascript:showInfo(22)" onmouseover="desc(22); return true;" shape="polygon" coords="481, 295, 494, 296, 508, 298, 497, 330, 490, 330, 483, 333, 478, 326, 473, 312">
  323. <area href="Javascript:showInfo(23)" onmouseover="desc(23); return true;" shape="polygon" coords="472, 333, 483, 338, 493, 338, 493, 349, 468, 382, 461, 369, 456, 365, 462, 340">
  324. <area href="Javascript:showInfo(24)" onmouseover="desc(24); return true;" shape="polygon" coords="451, 377, 457, 376, 461, 386, 434, 402, 429, 393, 421, 404, 393, 417, 389, 428, 384, 421, 392, 405, 408, 379, 413, 374, 421, 375, 421, 370, 429, 371, 433, 380, 447, 376">
  325. <area href="Javascript:showInfo(25)" onmouseover="desc(25); return true;" shape="polygon" coords="390, 364, 392, 373, 399, 380, 377, 413, 367, 412, 350, 409, 340, 396, 343, 385, 332, 381, 351, 374, 373, 369, 386, 364">
  326. <area href="Javascript:showInfo(26)" onmouseover="desc(26); return true;" shape="polygon" coords="376, 439, 384, 438, 394, 434, 393, 442, 391, 449, 376, 454, 371, 448">
  327. <area href="Javascript:showInfo(27)" onmouseover="desc(27); return true;" shape="polygon" coords="508, 397, 512, 381, 517, 369, 514, 358, 503, 367, 500, 387">
  328. <area href="Javascript:showInfo(28)" onmouseover="desc(28); return true;" shape="polygon" coords="439, 189, 439, 192, 434, 191, 438, 196, 436, 200, 441, 199, 444, 199, 441, 194, 444, 192"></map><img border="0" src="chinese_map.gif" width="600" height="468" usemap="#FPMap0" alt=""></p>
  329. </body>
  330. </html>