﻿// Copyright (c) 2008 Deep Software Inc.

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);
 }