// Deep Software (www.deep-software.com) JavaScript
// Copyright 2004 Deep Software. All rights reserved.

//Show image in auto-sized popup window
//------- popImg()    ---------------------------------------
//--   Input : (iName) - the name of the large image to be shown in the popup
//--   Options : (pInfo) - These are for the base window settings when opened
//--------------------------------------------------------------
function popImg(iName) {
  var pURL='pop.aspx?pi='+iName;
      pInfo='toolbar=0,';
      pInfo+='location=0,';
      pInfo+='directories=0,';
      pInfo+='status=0,';
      pInfo+='menubar=0,';
      pInfo+='scrollbars=0,';
      pInfo+='resizable=1,';
      pInfo+='width=200,';
      pInfo+='height=200';
  window.open(pURL, 'bigPop', pInfo);
}