//Popupwindow.js
//Javascript file for Art Gallery
//Pops up a window set to a proper size with only one art piece on display.

function changePage()
{
   var f = document.forms.navigator;

   var uri = f.pages.options[f.pages.selectedIndex].value;
   newPage = 1;
// These settings describe the pop-up browser
// window - you can edit them.
window.open(uri,"NewPage","height=550,width=550,location=top,scrollbars=yes,menubar=no,toolbar=no,resizable=yes,status=no");
  
}