Index: oceandb/webapproot/pages/Main/Main.js
===================================================================
--- oceandb/webapproot/pages/Main/Main.js	(revision 49)
+++ oceandb/webapproot/pages/Main/Main.js	(revision 50)
@@ -1,21 +1,26 @@
+var map;						// map 物件必須是全域變數，才能讓每個圖層存取
 dojo.declare("Main", wm.Page, {
   start: function() {
     if (GBrowserIsCompatible()) {
-     var map = new GMap2(dojo.byId(this.map).domNode);    // 透過 Dojo 取得 DOM 中,名稱為 map 的元件
-     map.addControl(new GLargeMapControl());          // 加入左上角比例尺規控制列
-     map.addControl(new GScaleControl());            // 加入左下角比例尺狀態列
-     map.addControl(new GMapTypeControl());           // 加入右上角"地圖","衛星","混合地圖"按鈕
-     map.setCenter(new GLatLng(23.8,121), 7);         // 設定預設經緯度北緯 23.8, 東經 121, 預設比例尺 100 公里(7)
-     map.setMapType(G_SATELLITE_MAP);              // 設定預設底圖為"衛星"
+     map = new GMap2(dojo.byId(this.map).domNode);      // 透過 Dojo 取得 DOM 中,名稱為 map 的元件
+     map.addControl(new GLargeMapControl());		// 加入左上角比例尺規控制列
+     map.addControl(new GScaleControl());		// 加入左下角比例尺狀態列
+     map.addControl(new GMapTypeControl());		// 加入右上角"地圖","衛星","混合地圖"按鈕
+     map.setCenter(new GLatLng(23.8,121), 7);		// 設定預設經緯度北緯 23.8, 東經 121, 預設比例尺 100 公里(7)
+     map.setMapType(G_SATELLITE_MAP);			// 設定預設底圖為"衛星"
     }
-    var request = GXmlHttp.create();                      // 產生一個非同步的 AJAX XMLHttp 物件
+  },
+  deepseaChange: function(inSender, inDisplayValue, inDataValue) {
+   if(this.deepsea.dataValue)
+   {
+    var request = GXmlHttp.create();                    // 產生一個非同步的 AJAX XMLHttp 物件
     var GetDataXml="getdeepstaxml.xml";
-    request.open("GET",GetDataXml, true);                    // 用 XMLHttp 物件去開啟 http://deepsea.biodiv.tw/getdeepstaxml.asp
-    request.onreadystatechange = function() {                 // 定義 XMLHttp 有狀態改變的事件處理函數 callback function
+    request.open("GET",GetDataXml, true);               // 用 XMLHttp 物件去開啟 http://deepsea.biodiv.tw/getdeepstaxml.asp
+    request.onreadystatechange = function() {           // 定義 XMLHttp 有狀態改變的事件處理函數 callback function
      if (request.readyState == 4) {                     // XMLHttp 的狀態是 Ready (4) 繼續處理 Server 傳回的 XML 資料
-      var xmlDoc = request.responseXML;                   // xmlDoc = 回傳的 XML 資料
+      var xmlDoc = request.responseXML;                 // xmlDoc = 回傳的 XML 資料
       var markers = xmlDoc.documentElement.getElementsByTagName("marker");  // 取出名稱為 marker 的 xml 元件, 結果是陣列
       for (var i = 0; i < markers.length; i++) {
-       var points2 = [];                          // 宣告一個空的陣列 point2 來存起始與結束座標點
+       var points2 = [];				// 宣告一個空的陣列 point2 來存起始與結束座標點
        // 把 lat1 跟 lng1 塞進起始座標點 GLatLng 物件
        points2.push(new GLatLng(parseFloat(markers[i].getAttribute("lat1")),parseFloat(markers[i].getAttribute("lng1"))));
@@ -30,5 +35,10 @@
      }
     }
-    request.send(null);                                      // 送出 XMLHttp 物件的要求
+    request.send(null);					// 送出 XMLHttp 物件的要求    
+   }
+  },
+  showmenuClick: function(inSender, inEvent) {
+   this.menu.getValue("showing") ? this.menu.setValue("showing",false) : this.menu.setValue("showing",true);
+   map.setCenter(new GLatLng(23.8,121), 7);		// 設定預設經緯度北緯 23.8, 東經 121, 預設比例尺 100 公里(7)
   },
   _end: 0
Index: oceandb/webapproot/pages/Main/Main.widgets.js
===================================================================
--- oceandb/webapproot/pages/Main/Main.widgets.js	(revision 49)
+++ oceandb/webapproot/pages/Main/Main.widgets.js	(revision 50)
@@ -1,36 +1,41 @@
 Main.widgets = {
 	layoutBox1: ["wm.Layout", {box: "v", height: "1flex"}, {}, {
-		template1: ["wm.Template", {height: "96px"}, {}, {
-			header: ["wm.Panel", {_classes: {domNode: ["wm_Padding_8px", "wm_SilverBlueTheme_LightBlueInsetPanel"]}, box: "h", height: "78px", boxPosition: "topLeft"}, {}, {
-				panel4: ["wm.Panel", {box: "v", width: "1flex"}, {}, {
-					chineseheader: ["wm.Label", {_classes: {domNode: ["wm_FontFamily_Verdana", "wm_FontSize_300percent"]}, caption: "台灣海洋資訊資料庫聯盟網", link: "http://oceandb.info", height: "48px"}, {}, {
-						format: ["wm.DataFormatter", {}, {}]
+		template2: ["wm.Template", {height: "1flex"}, {}, {
+			toolbar: ["wm.Panel", {_classes: {domNode: ["wm_SilverBlueTheme_LightBlueOutsetPanel", "wm_Padding_4px"]}, box: "h", height: "22px"}, {}, {
+				home: ["wm.Button", {_classes: {domNode: ["wm_TextDecoration_Bold", "wm_FontSize_120percent", "wm_FontFamily_Verdana", "wm_TextAlign_Center"]}, width: "63px", autoSize: false, caption: "HOME", hint: "台灣海洋資訊資料庫聯盟網 Taiwan Ocean Informatioan Database"}, {}],
+				spacer1: ["wm.Spacer", {width: "10px"}, {}],
+				showmenu: ["wm.Button", {_classes: {domNode: ["wm_FontFamily_Verdana", "wm_TextDecoration_Bold", "wm_FontSize_120percent"]}, width: "61px", autoSize: false, caption: "MENU", height: "18px"}, {onclick: "showmenuClick"}],
+				spacer2: ["wm.Spacer", {width: "10px"}, {}],
+				news: ["wm.Button", {_classes: {domNode: ["wm_FontFamily_Verdana", "wm_FontSize_120percent", "wm_TextDecoration_Bold", "wm_TextAlign_Center"]}, width: "62px", autoSize: false, caption: "NEWS"}, {}],
+				spacer: ["wm.Spacer", {width: "10px"}, {}],
+				about: ["wm.Button", {_classes: {domNode: ["wm_TextAlign_Center", "wm_TextDecoration_Bold", "wm_FontSize_120percent", "wm_FontFamily_Verdana"]}, width: "69px", autoSize: false, caption: "ABOUT"}, {}],
+				spacer3: ["wm.Spacer", {width: "96px"}, {}],
+				title: ["wm.Label", {_classes: {domNode: ["wm_FontFamily_Verdana", "wm_TextDecoration_Bold", "wm_TextAlign_Right", "wm_FontSize_150percent"]}, caption: "台灣海洋資訊資料庫聯盟網 Taiwan Ocean Informatioan Database", link: "http://oceandb.info", width: "1flex"}, {}, {
+					format: ["wm.DataFormatter", {}, {}]
+				}]
+			}],
+			main: ["wm.Panel", {box: "h", height: "1flex"}, {}, {
+				menu: ["wm.Panel", {_classes: {domNode: ["wm_SilverBlueTheme_LightBlueInsetPanel"]}, box: "v", width: "246px"}, {}, {
+					deepsea: ["wm.CheckBoxEditor", {emptyValue: "null", caption: "台灣深海生物分佈資料庫", captionSize: "180px", captionAlign: "left", captionPosition: "right", height: "20px"}, {onchange: "deepseaChange"}, {
+						editor: ["wm._CheckBoxEditor", {dataType: "boolean"}, {}]
 					}],
-					englishheader: ["wm.Label", {_classes: {domNode: ["wm_FontFamily_Verdana", "wm_FontSize_150percent", "wm_TextDecoration_Bold", "wm_TextDecoration_Underline", "wm_FontColor_LightGray"]}, caption: "Taiwan Ocean Informatioan Database", height: "16px"}, {}, {
-						format: ["wm.DataFormatter", {}, {}]
+					boat: ["wm.CheckBoxEditor", {caption: "航行軌跡", captionSize: "180px", captionAlign: "left", captionPosition: "right", height: "20px"}, {}, {
+						editor: ["wm._CheckBoxEditor", {dataType: "boolean"}, {}]
 					}]
 				}],
-				logo: ["wm.Picture", {source: "http://www.tori.narl.org.tw/images/tori_logo.png", aspect: "v", link: "http://www.tori.narl.org.tw", autoSize: true}, {}]
-			}]
-		}],
-		template2: ["wm.Template", {height: "1flex"}, {}, {
-			toolbar: ["wm.Panel", {_classes: {domNode: ["wm_SilverBlueTheme_ToolBar"]}, box: "h", height: "26px"}, {}, {
-				home: ["wm.Button", {_classes: {domNode: ["wm_TextDecoration_Bold", "wm_FontSize_120percent", "wm_FontFamily_Verdana", "wm_TextAlign_Center"]}, width: "63px", caption: "HOME"}, {}],
-				spacer1: ["wm.Spacer", {width: "10px"}, {}],
-				news: ["wm.Button", {_classes: {domNode: ["wm_FontFamily_Verdana", "wm_FontSize_120percent", "wm_TextDecoration_Bold", "wm_TextAlign_Center"]}, width: "62px", caption: "NEWS"}, {}],
-				spacer2: ["wm.Spacer", {width: "10px"}, {}],
-				about: ["wm.Button", {_classes: {domNode: ["wm_TextAlign_Center", "wm_TextDecoration_Bold", "wm_FontSize_120percent", "wm_FontFamily_Verdana"]}, width: "69px", caption: "ABOUT"}, {}]
-			}],
-			main: ["wm.Panel", {box: "h", height: "1flex"}, {}, {
-				menu: ["wm.Panel", {_classes: {domNode: ["wm_SilverBlueTheme_LightBlueInsetPanel"]}, box: "v", width: "246px"}, {}],
-				splitter1: ["wm.Splitter", {width: "6px"}, {}],
-				map: ["wm.Panel", {_classes: {domNode: ["wm_SilverBlueTheme_MainInsetPanel"]}, box: "v", width: "1flex"}, {}]
+				MapPanel: ["wm.Panel", {_classes: {domNode: ["wm_SilverBlueTheme_MainInsetPanel", "height:500px"]}, box: "v", width: "1flex", boxPosition: "topLeft"}, {}, {
+					map: ["wm.Html", {height: "1flex"}, {}]
+				}]
 			}]
 		}],
 		template3: ["wm.Template", {height: "29px"}, {}, {
-			footer: ["wm.Panel", {_classes: {domNode: ["wm_SilverBlueTheme_LightBlueInsetPanel"]}, box: "h", height: "20px", boxPosition: "center"}, {}, {
-				footerLabel: ["wm.Label", {_classes: {domNode: ["wm_FontColor_Blue", "wm_TextDecoration_Bold", "wm_FontSize_120percent", "wm_FontFamily_Verdana"]}, caption: "Copyright 2008 TORI & NCHC, NARL, Taiwan", width: "315px", height: "", autoSize: true}, {}, {
+			footer: ["wm.Panel", {_classes: {domNode: ["wm_SilverBlueTheme_LightBlueInsetPanel", "wm_Padding_2px"]}, box: "h", lock: true, height: "42px", boxPosition: "center"}, {}, {
+				footerLabel: ["wm.Label", {_classes: {domNode: ["wm_FontColor_Blue", "wm_TextDecoration_Bold", "wm_FontSize_120percent", "wm_FontFamily_Verdana"]}, caption: "Copyright 2008 <a href='http://www.tori.narl.org.tw'>TORI</a> & <a href='http://www.nchc.org.tw'>NCHC</a>, <a href='http://www.narl.org.tw'>NARL</a>, Taiwan", width: "315px", height: "", autoSize: true}, {}, {
 					format: ["wm.DataFormatter", {}, {}]
-				}]
+				}],
+				spacer4: ["wm.Spacer", {width: "1flex"}, {}],
+				tori: ["wm.Picture", {height: "", source: "http://www.tori.narl.org.tw/images/tori_logo.png", link: "http://www.tori.narl.org.tw", width: "140px", aspect: "v"}, {}],
+				spacer5: ["wm.Spacer", {width: "10px"}, {}],
+				nchc: ["wm.Picture", {source: "http://www.nchc.org.tw/web_images/tw/header/logo.jpg", link: "http://www.nchc.org.tw", width: "140px", aspect: "v"}, {}]
 			}]
 		}]
