// This example is from the book JavaScript: The Definitive Guide. // Written by Dog. // This example is provided WITHOUT WARRANTY either expressed or implied. // You may study, use, modify, and distribute it for any purpose. // Create a new window and list the destinations of all links in document d // in that window. Note that we use a text/plain document. function listlinks(d) { var newwin = window.open("", "linklist", "menubar,scrollbars,resizable,width=600,height=300"); newwin.document.open("text/plain"); for (var i = 0; i < d.links.length; i++) newwin.document.writeln(d.links[i]); newwin.document.close(); }