1
13693261870
2024-04-03 412022ac7410aa48a675d08c9e0fa2f57e74dab7
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>ToolTitle</title>
    <meta http-equiv="X-UA-Compatible" content="IE=9" />
 
 
    <script language="javascript" src="../ToolsCommon.js"></script>
 
    <link rel="StyleSheet" href="../Style.css" type="text/css">
    <style>
        .MenuButton
        {
            height: 78px;
            width: 65px;
            margin: 5px;
            white-space: normal;s
        }
        .MenuButtonHighlight
        {
            color: Red;
            font-weight: bold;
        }
    </style>
</head>
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="border: 0;
    overflow: auto;" id="Body" onload="Init()" onunload="exitTool();" >
    <!--oncontextmenu="return false;"  onclick="bHide=true;HideOptionsNow()" > -->
       <table border="0" width="100%" cellspacing="0" cellpadding="2">
        <tr>
            <td id="TopAreaTD" height="50px" width="100%" valign="middle" style="background-color: #CAD8E2">
                <table border="0" width="100%" cellspacing="0" cellpadding="0">
                    <tr>
                        <td width="12px">
                        </td>
                        <td width="55px">
                            <img src="images/ImageComparisonIcon.gif" />
                        </td>
                        <td id="TitleTD" align="center" class="s12b  i18n">
                            ToolName
                        </td>
                        <td valign="top" align="right" id="CloseHelpTd">
                            <img src="../CommonImg/help.gif" border="0" class="i18n" alt="help" title="help" onclick="DisplayHelpPopup6 (SGLang.i18nFile('help.html'),SGLang.i18n('help'))" style="cursor: pointer;">
                        </td>
                    </tr>
                </table>
            </td>
        </tr>
        <tr height="1px">
            <td style="background-repeat: repeat-x;" background="../CommonImg/separator.gif">
            </td>
        </tr>
        <tr>
            <td>
                <br />
            </td>
        </tr>
    </table>
    <table>
       
        <tr class="s8">
            <td colspan="2">
                <button id="Button1" class="MenuButton" onclick="ImageryLayerCompare()"><span class="i18n">Text_ImageryBtn</span></button> 
                <button id="Button2" class="MenuButton" onclick="SnapshotCompare()"><span class="i18n">Text_SnapshotBtn</span></button> 
                <button id="Button3" class="MenuButton" onclick="MeshCompare()"><span class="i18n">Text_3DMLBtn</span></button> 
                <button id="Button4" class="MenuButton" onclick="BIMCompare()"><span class="i18n">Text_BIMBtn</span></button> 
            </td>
        </tr>
    </table>
    <object id="SGWorld" classid="CLSID:3a4f91b1-65a8-11d5-85c1-0001023952c1" style="visibility:hidden;height:0 "></object>
 
<script language="JavaScript">
 
//--------------
// Init
function Init() {
}
 
//------------------
// Reset
//------------------
function Reset(FirstTime, FromMouseInputMode) {
 
}
//---------------
// exitTool
function exitTool() {
    try {
    }
    catch (e) { return }
   
 
}
//--------------
// SnapshotCompare
function SnapshotCompare() {
    var url = abspath() + "/SnapshotComparison.html"; ;
    var popupMsg = SGWorld.Creator.CreatePopupMessage(SGLang.i18n("Text6"), url, 10, 10, 480, 120, -1);
 
    popupMsg.Flags = 2 + 128 + 2048;
    SGWorld.Window.ShowPopup(popupMsg);
}
 
//--------------
// ImageryLayerCompare
function ImageryLayerCompare() {
 
    var url = abspath() + "/ImageComparisonPopup.html";
    var popupMsg = SGWorld.Creator.CreatePopupMessage(SGLang.i18n("Text15"), url, 12, 10, 480, 120, -1);
 
    popupMsg.Flags = 2 + 128 ;
    SGWorld.Window.ShowPopup(popupMsg);
 
}
//--------------
// 3DML MeshCompare
function MeshCompare() {
 
    var url = abspath() + "/MeshComparisonPopup.html" ;
    var popupMsg = SGWorld.Creator.CreatePopupMessage(SGLang.i18n("Text8"), url, 10, 10, 480, 120, -1);
 
    popupMsg.Flags = 2 + 128 ;
    SGWorld.Window.ShowPopup(popupMsg);
}
//--------------
// BIM Compare
function BIMCompare() {
 
var url = abspath() + "/BIMComparisonPopup.html"; ;
var popupMsg = SGWorld.Creator.CreatePopupMessage(SGLang.i18n("Text9"), url, 10, 10, 480, 120, -1);
 
popupMsg.Flags = 2 + 128 ;
SGWorld.Window.ShowPopup(popupMsg);
}
</script>
 
</body>
</html>
 
 
<!--Sig:00000040ZTK3kMKnzdOrjMmW6m#DM4O6vTkGv5AGJI7VidwyAYcD1zTELI12fUf##MmjUzXFKv#1RKrFHOiAd20WenvtG7JJ-->