var PopW;
PopW=0;


function popImg(path,wIn,hIn,stepLeft,stepTop)
{
  if (!stepLeft) {stepLeft=200;};
  if (!stepTop) {stepTop=200;};
  w = wIn;
  h = hIn;
  ww = wIn + 50;
  hh = hIn + 50;

  if (PopW) {PopClose();};
  PopW = window.open('/popimg.htm?'+path+'&'+w+"&"+h,'poppic','marginheight=0,marginweight=0,toolbar=no,width='+ww+',height='+hh+', left='+stepLeft+', top='+stepTop+', resizable=no, scrollbars=no');
  PopW.focus();
};

function PopImg2(img,w,h)
{
  ww = w + 50;
  hh = h + 50;
  path=img;

  if (PopW) {PopClose();};
  PopW=window.open('/popimg.htm?'+path+'&'+w+"&"+h,'poppic','marginheight=0,marginweight=0,toolbar=no,width='+ww+',height='+hh+', left=100, top=100, resizable=no, scrollbars=no');
  PopW.focus();
}

function PopClose()
{
  PopW.close();
  PopW=0
};