Antonio 13 de Abril del 2005
function agregaLink(){
var mylink = document.createElement("A");
var mylinktext = document.createTextNode("enlace a programacion.com");
mylink.setAttribute("href","http://www.programacion.com");
mylink.appendChild(mylinktext);
document.body.appendChild(mylink);
}