<html>
 <head>
  <script type="text/javascript">
   function init() {
document.getElementById("text1").value = document.referrer;
   }
  </script>
 </head>

 <body onload="init();">
  <form>
   <input id="text1" type="text" />
  </form>
 </body>
</html>

とか。