You can mess with any named(or arrayed, such as links) HTML tags with the "innerHTML" and "outerHTML" commands.<br>innerHTML refers to all of the HTML within the tags, and outerHTML refers to all of the HTML within the tags, plus the tags themselves.<br>Example:<br>document.links[0].innerHTML = "<b>New Text Placed Here<\/b>"<br>document.all.myspan.outerHTML = "" //deleted the span