<!-- Begin
 function showlinks() {
  text = "The following links are available on this page:<hr>"; 
  windowprops = "menubars=no,location=no,toolbars=no," 
  +"scrollbars=yes,width=350,height=350,top=100,left=100"; 
  self.name="main";
   for (i=0; i<document.links.length; i++)
   text += "<p><a target='_new' href="+document.links[i]+">"+document.links[i]+"</a>";
   linkswin = window.open("","",windowprops);
     with (linkswin.document) {
      open();
       write(text);
        close();
        } 
} 
// End -->
 
