You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
511 B
24 lines
511 B
<html>
|
|
<head>
|
|
<title></title>
|
|
</head>
|
|
<body>
|
|
|
|
<script language="javascript">
|
|
function getUrl() {
|
|
var query = window.location.hash.substring(1);
|
|
var vars = query.split("&&&");
|
|
for (var i=0;i<vars.length;i++) {
|
|
var url = vars[i];
|
|
return decodeURI(url).replace("html%23","html#");
|
|
}
|
|
}
|
|
|
|
var rel = '../';
|
|
var url = getUrl();
|
|
if (url.indexOf(":") > 0 && url.indexOf(":") < 10) rel = '';
|
|
self.location.href = rel + url;
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|