function addGroupEditLink() {
  var txt = fetchURL(rootpath+"php/groupadminping.php");
  
  var bits = txt.split(" ");
  if (bits[0] == "OK") {
    if (bits[1] == groupid) {
      document.getElementById("editlink").innerHTML = "<a style='text-decoration:none; color:#d0d0d0' href='"+rootpath+"php/groupAdmin.php' title='Edit group details'>[edit]</a>";
    }
  }
}

setTimeout(addGroupEditLink, 50);


