// JavaScript Document
//creates a popup window

//this function allows you to set the width, height, scroll, resize of the window
function newWin(link,w,h,s,r) {
  var winFeatures = 'width=' + w + ',height=' + h + ',scrollbars=' + s + ',resizable=' + r;
  var bookWindow = window.open(link, "", winFeatures);
}

//this function will open new window in full screen
function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=auto, toolbar=yes');
}