
//<!--

var imgloc;
var imgWidth;
var imgHeight;
var patflag = 0;

function showPopup(imgLoc, imgWidth, imgHeight) {
  if (patflag == 1) {
  if (wndPopup.closed) {}
  else  {wndPopup.close();}
  }
  wndPopup = window.open(imgLoc,'wndPopup',
  'width='+imgWidth+',height='+imgHeight+',top=75,left=100,toolbar=yes,scrolling=yes,scrollbars=yes,resize=no');
  patflag = 1;
  return wndPopup;
}

// -->
