Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
15403 manish.sha 1
<html>
2
<!--
3
  Static page for redirecting to a separate page.
4
  This changes the HTTP-Referer so that the original page is
5
  hidden.
6
 
7
  Copyright (c) 2014 by Jim Lawless
8
  jimbo@radiks.net
9
  See MIT/X11 license at
10
  http://www.mailsend-online.com/license2014.php
11
 
12
-->
13
<head><title>Ditch your HTTP-Referer</title>
14
<script type="text/javascript">
15
function pass_it_on() {
16
   var l=window.location+"";
17
   var dsp=document.getElementById("display");
18
   var qsloc=l.indexOf("?");
19
   if(qsloc>=0) {
20
      var query_string=unescape(l.substring(qsloc+1));
21
      dsp.innerHTML="Redirecting to " + query_string;
22
      window.location=query_string;
23
   }
24
}
25
</script>
26
</head>
27
<body onload="pass_it_on();">
28
 
29
<div id="display">
30
</div>
31
</body>
32
</html>