1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
| <!DOCTYPE html>
| <html>
| <head>
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
| <title></title>
| <meta charset="utf-8" />
| <style>
| html, body {
| margin: 0;
| padding: 0;
| width: 100%;
| height: 100%;
| overflow: hidden;
| }
| </style>
| </head>
| <body onload="init();">
| <object id="TerraExplorerInformationWindow" classid="CLSID:3a4f9193-65a8-11d5-85c1-0001023952c1" style="width:100%;height:100%"></object>
| <object ID="SGWorld" classid="CLSID:3A4F919C-65A8-11D5-85C1-0001023952C1" style="visibility:hidden;height:0"></object>
| <script>
| function init() {
| SGWorld.ProjectTree.ShowSearchTool = false;
| }
| </script>
| </body>
| </html>
|
|