function popup(doc,name,s,w,h,r) {
  remoteWin=window.open(doc,name,"scrollbars=" + s + ",width=" + w + ",height=" + h + ",resizable=" + r);
  remoteWin.focus();
}

function popupImg(img,addW,addH) {
  var w = ((addW) ? addW : 0);
  var h = ((addH) ? addH : 0);
  remoteWin = window.open("","photo","resizable=1,width=200,height=200,scrollbars="+(((h<0)||(w<0)) ? "1" : "0"));
  with (remoteWin.document) {
    open('text/html', 'replace');
    write('<html><head><title>Active Technology</title></head><body style="margin:10px;background-color:white" onload="resizeTo(document.popupImg.width+50+'+w+',document.popupImg.height+50+'+h+'); window.focus()"><div align="center"><img border="0" src="' + img + '" name="popupImg"></div></body></html>');
    close();
  }
}