/* 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);
}
