// JavaScript Document

<!--
/* This script and many more are available free online at
The JavaScript Source!! http://javascript.internet.com
Created by: Lee Underwood :: http://javascript.internet.com/ */

function newWindow(link) {
  var bookWindow;
  bookWindow = window.open(link, "new1", "width=530,height=375,scrollbars,resizable=no");
  if (bookWindow.open) {
    bookWindow.close;
  }
  bookWindow.focus();
}
-->