function handleResponse(){ if(http.readyState == 4){ var response = http.responseXML; indexingTable=document.getElementById("indexingTable"); if(response != null){ entries=response.getElementsByTagName("entry"); } //skip the Tableheade row=indexingTable.firstChild.nextSibling.firstChild.nextSibling.nextSibling; while(row != null){ //delete old entries indexingTable.firstChild.nextSibling.removeChild(row); row=indexingTable.firstChild.nextSibling.firstChild.nextSibling.nextSibling; } dark=false; for(i=0;iDelete' //create delete link col=document.createElement("td"); link=document.createElement("a"); link.setAttribute("href", "IndexCreateIndexingQueue_p.html?deleteEntry="+hash); text=document.createTextNode("Delete"); link.appendChild(text); col.appendChild(link) row.appendChild(col); return row; }