function markpatrolled(rcid) {
  var xhrq = new XMLHttpRequest;
  xhrq.open("GET", "http://nl.wikipedia.org/w/index.php?title=Portsmouth_FC&rcid="+rcid+"&action=markpatrolled", false);
  xhrq.overrideMimeType('text/xml');
  xhrq.send()
  var status = "HTTP " + xhrq.status + " " + xhrq.statusText;
  if (test.status == 200)
    document.getElementById(rcid).parentNode.innerHTML = status + "-" + xhrq.responseXML.getElementById("content").getElementsByTagName("h1").innerHTML;
  else
    document.getElementById(rcid).innerHTML = status;
  return status;
}