This page consists entirely of the following Javascript:
var args = document.location.href.split("?");
var Para;
if(args.length == 1)
{
Para = "?encoder=192.168.1.78&wport=5000"}
else
{
Para = "?" + args[1];
}
var la=navigator.browserLanguage.toLowerCase();
if(la=='zh-cn')
document.location = 'index_ch.html' + Para;
else
document.location = 'index_en.html' + Para;
This throws up the following error:
:8080/?encoder=192.168.1.78&wport=63043:15TypeError: Result of expression 'navigator.browserLanguage' [undefined] is not an object.
'navigator.browserLanguage' seems to be an IE-specific JS object, and is not recognized by other browsers.
This seems to be attempting to redirect to another URL which may be
http://221.238.105.38:8080/index_en.html?encoder=192.168.1.78&wport=5000
This bounces you on to
http://221.238.105.38:8080/index_ch.html?encoder=192.168.1.78&wport=5000&Languag e=1
which is a page with lots of code but which appears only as a background colour with no other content (not even that in FireFox). I think one might reasonably conclude that you are not going to be able to get into this location other than with Windows and IE.