function show_menu(menu_item) {
   var where;
   var captions = new Array;
   var index = new Array;

   captions["main"] = "首页";
   captions["event"] = "大事记";
   captions["about"] = "王炳章简介";
   captions["article"] = "文章";
   captions["photo"] = "照片";
   captions["news"] = "报导";
   captions["appeal"] = "呼吁";
   captions["comment"] = "评论";
   captions["faq"] = "FAQ";
   captions["donate"] = "捐款";
   captions["contact"] = "联系";
   captions["shaw_ca_yhwang"] = "营救王炳章博士基金会";
   captions["forum"] = "★论坛";

   index[0]  = "main";
   index[1]  = "event";
   index[2]  = "about";
   index[3]  = "article";
   index[4]  = "photo";
   index[5]  = "news";
   index[6]  = "appeal";
   index[7]  = "comment";
   index[8]  = "faq";
   index[9]  = "donate";
   index[10] = "contact";
   index[11] = "shaw_ca_yhwang";
   index[12] = "forum";

   var i, j, k, s;
   for (i = 0; i < index.length; i++) {
      if (index[i] == menu_item) break;
   }
   k = i;
   document.write("<TABLE WIDTH='100%' bgColor=#d5e2ec cellspacing='0' cellpadding='0'>");
   document.write("<TR>");
   document.write("<TD WIDTH='95%'>");
   document.write("<TABLE ALIGN='left'>");
   document.write("<TR>");
   for (j = 0; j < index.length; j++) {
//      if (j == 0) {						 // 12/03/03
//	      where = "";
//      } else {
        where = "/" + index[j];
//      }
      if (j == i) {
		s = "<TD><font color=red><U>" + captions[index[j]] + "</U></font>";
	  } else if (j == index.length-2) { // form
		s = "<TD><a href='/cgi-bin/forum_mainpage.cgi?bbs=wbz'>" + captions[index[j]] + "</a>";
	  } else {
    	s = "<TD><a href='" + where + "/index.htm'>" + captions[index[j]] + "</a>";
      }
      s = s + "</TD><TD>";
//      if (j == index.length - 1) {
//    	  s = s + "&nbsp;";
//      } else {
//     	 s = s + "|";
//      }
      document.write(s + "&nbsp;</TD>");
   }
   document.write("</TR></TABLE></TD>");
   document.write("<TD WIDTH='30%'>");

   if (k < index.length) { // && menu_item != 'forum') {
//      if (menu_item == 'main') {	 // 12/03/03
//         where = "";
//      } else {
         where = "/" + menu_item;
//      }
		if (menu_item == 'forum') where = "/main";
      document.write("<p align=right><a href='" + where + "/index_en.htm'>English&nbsp;</a></p>");
   }
   document.write("</TD></TR></TABLE>");
}

function organizations() {
   document.write("<P><TABLE WIDTH='100%' bgColor=#d5e2ec>");
   document.write("<TR><TD ALIGN='right'>&copy; Copyright 2003-2008 王炳章救援工作委员会&nbsp;</TD></TR>");
   document.write("</TABLE>");
}

