HTTP/1.1 200 OK
Cache-Control: public, max-age=2
Content-Type: text/html
Accept-Ranges: bytes
ETag: "3256272965"
Last-Modified: Thu, 15 Nov 2018 03:16:10 GMT
Content-Length: 15866
Date: Wed, 30 Apr 2025 23:38:18 GMT
Server: lighttpd
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, user-scalable=no">
<title>Hanwha Techwin</title>
<link rel="stylesheet" href="./wmf/common_index/index.css">
</head>
<body>
<div id="wrap">
<div id="button-group">
<button type="button" id="old-plugin" onclick="moveToPluginWebviewer()">Plug-in Webviewer</button>
<button type="button" id="non-plugin" onclick="moveToNonPluginWebviewer()">Plug-in Free Webviewer</button>
</div>
</div>
<div id="ie-lower-version">
<div class="brand">
<img src="./wmf/common_index/images/web_notice_Logo.png" title="wisenet webviewer" alt="wisenet webviewer">
</div>
<div class="dialog">
<p>
You are required to upgrade your browser to IE11.<br>
Webviewer may not work properly on the IE version you are currently using.<br>
</p>
</div>
<div class="other-browser">
<p>
If you have to continue using the current version of IE, please use a different Internet browser.
</p>
<ul>
<li class="mg">
<img src="./wmf/common_index/images/web_notice_crome.png" title="Chrome" alt="Chrome">
</li>
<li class="mg">
<img src="./wmf/common_index/images/web_notice_firefox.png" title="Firefox" alt="Firefox">
</li>
<li class="mg">
<img src="./wmf/common_index/images/web_notice_edge.png" title="Egde" alt="Egde">
</li>
</ul>
</div>
<div class="buttons">
<button type="button" class="confirm-button" onclick="moveToPluginWebviewer()">
Confirm
</button>
</div>
</div>
<script type="text/javascript" >
var CONFIG = {
OLD_WEBVIEW: './home/monitoring.cgi',
NEW_WEBVIEW: './home/check.cgi',
GUIDE: 'https://technet.microsoft.com/ko-kr/browser/mt163707',
IE_UPGRACE: 'http://windows.microsoft.com/ko-KR/internet-explorer/download-ie'
};
var detector = (function(){
/**
* See useragents.js for examples of navigator.userAgent
*/
var t = true;
function detect(ua) {
function getFirstMatch(regex) {
var match = ua.match(regex);
return (match && match.length > 1 && match[1]) || '';
}
function getSecondMatch(regex) {
var match = ua.match(regex);
return (match && match.length > 1 && match[2]) || '';
}
var iosdevice = getFirstMatch(/(ipod|iphone|ipad)/i).toLowerCase()
, likeAndroid = /like android/i.test(ua)
, android = !likeAndroid && /android/i.test(ua)
, chromeBook = /CrOS/.test(ua)
, edgeVersion = getFirstMatch(/edge\/(\d+(\.\d+)?)/i)
, versionIdentifier = getFirstMatch(/version\/(\d+(\.\d+)?)/i)
, tablet = /tablet/i.test(ua)
, mobile = !tablet && /[^-]mobi/i.test(ua)
, result
if (/opera|opr/i.test(ua)) {
result = {
name: 'Opera'
, opera: t
, version: versionIdentifier || getFirstMatch(/(?:opera|opr)[\s\/](\d+(\.\d+)?)/i)
}
}
else if (/yabrowser/i.test(ua)) {
result = {