function imagepopup(pUrl, pHeight, pWidth)
{
  popWin = window.open(pUrl,'imageWin','width=' + pWidth + ',height=' + pHeight + ',toolbar=no,personalbar=no,location=no,directories=no,statusbar=no,menubar=no,status=no,resizable=yes,left=60,screenX=60,top=100,screenY=100');
  popWin.resizeTo(pWidth + 6, pHeight + 76);
  popWin.focus();
}
