function makeArray() 
   {
   var args = makeArray.arguments;
   for (var i = 0; i < args.length; i++) 
      this[i] = args[i];
   this.length = args.length;
   }

var pages = new makeArray("雜誌流覽",
"2005年11月",
"2005年08月",
"2005年05月",
"2005年02月",
"2004年11月",
"2004年08月",
"2004年05月",
"2004年02月",
"2003年11月",
"2003年8月",
"2003年5月",
"2003年2月",
                          "2002年11月",
                          "2002年8月",
                          "2002年5月",
            		      "2002年2月",
                          "2001年11月",
                          "2001年8月",
                          "2001年5月",
                          "2001年2月",
                          "2000年11月",
                          "2000年8月",
                          "2000年5月",
                          "2000年2月",
                          "1999年11月",
                          "1999年8月",
                          "1999年5月",
                          "1999年2月",
                          "1998年11月",
                          "1998年8月",
                          "1998年5月",
                          "1998年2月",
                          "1997年11月",
                          "1997年8月",
                          "1997年5月",
                          "1997年2月",
                          "1996年11月",
                          "1996年8月",
                          "1996年5月",
                          "1996年2月",
                          "1995年11月",
                          "1995年8月",
                          "1995年5月",
                          "1995年2月",
                          "1994年11月",
                          "1994年8月");


var urls = new makeArray("",
"200511/200511.html"
"200508/200508.html"
"200505/200505.html",
"200502/200502.html",
"200411/200411.html",
"200408/200408.html",
"200405/200405.html",
"200402/200402.html",
"200311/200311.html",
"200308/200308.html",
"200305/200305.html",
"200302/200302.html",
                 "200211/200211.html",
		         "200208/200208.html",
		         "200205/200205.html",
		         "200202/200202.html",
		         "200111/200111.html",
		         "200108/200108.html",
		         "200105/200105.html",
		         "200102/200102.html",
		         "200011/200011.html",
		         "200008/200008.html",
		         "200005/200005.html",
		         "200002/200002.html",
		         "199911/199911.html",
		         "199908/199908.html",
		         "199905/199905.html",
		         "199902/199902.html",
		         "199811/199811.html",
		         "199808/199808.html",
		         "199805/199805.html",
		         "199802/199802.html",
		         "199711/199711.html",
		         "199708/199708.html",
		         "199705/199705.html",
		         "199702/199702.html",
		         "199611/199611.html",
		         "199608/199608.html",
		         "199605/199605.html",
		         "199602/199602.html",
		         "199511/199511.html",
		         "199508/199508.html",
		         "199505/199505.html",
		         "199502/199502.html",
		         "199411/199411.html",
		         "199408/199408.html");
var Base = "http://www.lapislazuli.org/TradCh/magazine/";
function goPage(form)
   {
   i = form.menu.selectedIndex;            
   if (i)
      parent.location.href = Base + urls[i];
   }
