// JavaScript Document
function popImg(URLStr,Width,Height)

{

  ImgWin = window.open(URLStr, 'imgWindow', 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=yes,width='+Width+',height='+Height+',left=0, top=0,screenX=0,screenY=0');
  ImgWin.focus();

}