﻿function image(pImage, pWidth, pHeight)
{
  var LeftPosition = (screen.width) ? (screen.width-pWidth)/2 : 0;
  var TopPosition = (screen.height) ? (screen.height-pHeight)/2 : 0;
  settings = 'height='+pHeight+',width='+pWidth+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resize=no'

  var imgWin = window.open('/pages/image.asp?img=' + pImage, 'imgWin', settings);
}
