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,status=1,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;font-family:sans-serif;font-size:12px;" onload="resizeTo(document.popupImg.width+50+'+w+',document.popupImg.height+100+'+h+'); window.focus()"><div align="center"><img border="0" src="' + img + '" name="popupImg"><br><br>[ <a href="javascript:window.close()">close window</a> ]</div></body></html>');
    close();
  }
}
