
  document.write('<input type="hidden" name="FromURL" value="');
  if (location.href.indexOf('?') == -1) {
    document.write(location.href + '">');
  }
  else {
    document.write(location.href.substring(0, location.href.indexOf('?')) + '">');
  }
