function prefillEmail() {
   // pull the n/v pairs off the URL
   var srch = document.location.search
   // parse them
   // if one is email="blah" then fill the form with "blah"
   if (srch.indexOf("email=") == 1) {
   	document.Subscribe.email.value = srch.substr(7);
   }
}

