
function ShowImage(urlImage, nWidth, nHeight)
	{
	nWidth += 15;
	nHeight += 15;
	var nLeft = 15;
	var nTop = 15;
	var winImage = window.open(urlImage, "image", "toolbar=0,location=0,directories=0,status=0,menuebar=0,scrollbars=no,resizable=1,alwaysRaised=1,width=" + nWidth + ",height=" + nHeight + ",left=" + nLeft + ",top=" + nTop + ",screenX=" + nLeft + ",screenY=" + nTop);
	winImage.focus();
	}
	
