
<!-- Paste this code into an external JavaScript file named: popUps.js  -->

/* This script and many more are available free online at
The JavaScript Source :: http://javascript.internet.com
Created by: Crazy Merlin : Lee Underwood
http://www.webtop-designs.com/ : http://www.javascript.internet.com/ */

function newWin(link,w,h,s,r) {
  var winFeatures = 'width=' + w + ',height=' + h + ',scrollbars=' + s + ',resizable=' + r;
  var bookWindow = window.open(link, "", winFeatures);
}






<!-- Paste this code into the BODY section of your HTML document  -->

<!--  You will need to enter the size of the window and whether it should display the scrollbars and be resizable, i.e. (width,height,yes/no,yes/no). See below  -->



