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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <meta http-equiv="X-UA-Compatible" content="IE=9" />
    <title>ToolTitle</title>
    <script language="javascript" src="../ToolsCommon65.js"></script>
    <link rel="StyleSheet" href="../Style.css" type="text/css">
    <style>
    </style>
</head> 
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" style="border: 0; overflow: hidden;background-color: #151515" id="Body" onload="Init()" >
        <table border=0 cellPadding=0 CELLSPACING=0 class="s9" width=100%>
        <tr><td class="s9w" align=center>
            <div id="LoadingDiv" style="display:inline"><span class="i18n s9w" >Text32</span>
            </div>
 
            <div id="CompareDiv" style="display:none">
            <span class="i18n s9w" >Text33</span><br />
            <br />
            <button onclick="LoadSnapshotPopup();" class="MenuButtonSmallWhite i18n" >Text14</button>
            </div>
        </td></tr>
        <tr><td>
            </td></tr>
        </table>
     <object id="SGWorld" classid="CLSID:3a4f9197-65a8-11d5-85c1-0001023952c1" style="visibility: hidden; height: 0"></object>
 
<script language="JavaScript">
var snapshotAImg;
var gStartPosition;
var gWidth;
var gHeight;
//--------------
// Init
function Init() {
 
    gStartPosition = SGWorld.Navigate.GetPosition(3);
 
    window.setTimeout("CaptureA();", 100);
    SGWorld.AttachEvent("OnFrame", onFrame);
 
 }
//--------------
// CaptureA
 function CaptureA() {
    // try {
        var ratio = SGWorld.Window.Rect.Width / SGWorld.Window.Rect.Height;
         gWidth = Math.min(SGWorld.Window.Rect.Width, 1499);
         gHeight = Math.min(gWidth / ratio, 1499);
         snapshotAImg = SGWorld.Window.GetSnapShot(true, gWidth, gHeight, "JPeg75", 1);
   //  }
   //  catch (err) { alert(err); }
 
     document.getElementById("LoadingDiv").style.display = "none";
     document.getElementById("CompareDiv").style.display = "inline";
 }
 //---------------
//
 function onFrame() {
     try {
         SGWorld.Navigate.SetPosition(gStartPosition);
     }
     catch (err) { }
 }
//--------------
// LoadSnapshotPopup
function LoadSnapshotPopup()
{
    snapshotAImg = snapshotAImg.replace(".jpg", "#jpg");
    snapshotAImg = snapshotAImg.replace(".tif", "#tif");
    var url = abspath() + "/SnapshotDetectionPopup.html?A=" + encodeURI(snapshotAImg) + "&lang=" + SGLang.getCode();
 
    var popupMsg1 = SGWorld.Creator.CreatePopupMessage(SGLang.i18n("Text7"), url, 15, 15, gWidth+18 , gHeight+65 , -1);
 
    popupMsg1.Flags = 2 + 64 + 128;
    SGWorld.Window.ShowPopup(popupMsg1);
 
 
}
</script>
</body>
 
 
 
 
</html>
 
 
<!--Sig:00000040CRbVOy3W14WyvOrKDaNrKJ1E0E3J4eXT5SudwnLpaHcGq4s16##u4D4ZDKTMytgD#HW5EbDmb.w35rjt1LrVJhJJ-->