// JavaScript Document

function start() {
var ref = document.getElementById('httpref');
ref.value = document.referrer;
var url = document.getElementById('httpurl');
url.value = window.location;
}
onload = start;
