 // JavaScript to open a separate window displaying the page implecated by the link.
 // popup.js
 // 2000 Birgit Pauli-Haack
 // adopted for www.bphpub.com
 // Nov. 2000

 function win(fileName) 
  {    myFloater=window.open('','myWindow','menubar=yes,scrollbars=yes,resizable=yes,status=yes,width=500,height=350')
myFloater.location.href = fileName;
 }
 
// End of JavaScript