//function to create popup to show larger form of images used in reports when selecting the images
function showImage(urlIn, shortIn)
{
	var strWinFeature = "height=200,width=400,status=no,toolbar=no,menubar=no";
	window.open(urlIn, 'Image', strWinFeature);
}

