// $Id: pagePopUp.js,v 1.1 2003/11/22 03:58:41 bobm Exp $
// This is a java script function for poping up a window.
// The window will close when it loses focus.
//
// Here is an example of the javascript that calls this function:
//   <a href="javascript:pagepopup('http://www.mymotherlode.com/>', 500, 600);">
//
// The "500" is the image width; "600" is the image height.
var pagewindow;
function pagepopup(url, width, height) {
    pagewindow = window.open(url, 'image', 'resizable=yes,scrollbars=yes,width=' + width + ',height=' + height);
    pagewindow.document.close();
}

