-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathee_goto.htm
54 lines (44 loc) · 1.24 KB
/
ee_goto.htm
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
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN">
<html>
<head>
<title>Platform-Specific Redirect Page</title>
<script language="JavaScript" src="shared/PS3Compatibility.js"></script>
<script language="JavaScript" src="shared/Xbox360Compatibility.js"></script>
<script language="JavaScript" src="shared/LinuxCompatibility.js"></script>
<script type="text/javascript" language="JavaScript">
<!--
var Param = window.location.hash.substring(1);
var URL="";
if (Param != "")
URL = Param;
if (URL.toUpperCase().indexOf("PS3") != -1 && PS3Compatibility == false)
{
URL = 'BadLicense.htm#' + Param;
}
if ((URL.toUpperCase().indexOf("XBOX360") != -1 || URL.toUpperCase().indexOf("XENON") != -1) && Xbox360Compatibility == false)
{
URL = 'BadLicense.htm#' + Param;
}
if (URL != "")
{
window.location.replace(URL);
}
else
{
URL = "blank";
}
-->
</script>
</head>
<body>
<h1>Platform-Specific Redirect Page</h1>
<p>If there is a security warning at the top of the page please click it and select "Allow blocked content".</p>
<p>If redirection does not occur click the link:
<script type="text/javascript" language="JavaScript">
<!--
document.write('<a href="'+ URL +'">'+ URL +'</a>')
-->
</script>
</p>
</body>
</html>