// JavaScript Document
function imgPopup(imgSrc) {
	leftPos = 0;
	topPos = 0;
	if (screen) {
		leftPos = (screen.width / 2) - 400;
		topPos = (screen.height / 2) - 300;
	}
	var newWindow = window.open('','','location=0,status=0,scrollbars=0,width=800,height=600,left=' + leftPos + ',top=' + topPos);
	newWindow.document.write('<style>body,html{margin:0px;padding:0px}</style>');
	newWindow.document.write('<img src="_images/' + imgSrc + '" onload="javascript:window.resizeBy(document.images[0].width - window.innerWidth, document.images[0].height - window.innerHeight);window.resizeBy(document.images[0].width - window.document.body.clientWidth, document.images[0].height - window.document.body.clientHeight);" />');
	newWindow.document.close();
}