/* showlinks.js */
<!-- Begin
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Jim Stiles :: http://www.jdstiles.com
Modified by: Daniel Burnett :: http://www.planet-k.tk */

function showLinks() {
  text = "The following links are available on this page:<hr>";
  windowprops = "menubars=no,location=no,toolbars=no," +"scrollbars=yes,width=500,height=350,top=100,left=100"; self.name="main";
  for (i=0; i<document.links.length; i++)
  text += "<p><a target='main' href="+document.links[i]+" onClick='setTimeout("+'"'+"window.close()"+'"'+",100)'>"+document.links[i].innerHTML+"</a> ("+document.links[i]+")";
  linkswin = window.open("","",windowprops);
    with (linkswin.document) {
    open();
    write(text);
    close();
    }
}
// End -->

