
function photogallery(imgName,imgWidth,imgHeight)
{
	imgWidth +=10;
	imgHeight += 50;
	var myPGWindow = window.open("",'PhotoGallery', 'width='+ imgWidth+',height='+ imgHeight+',statusbar=no, toolbar=no');
	//myPGWindow.moveTo(screen.width/3, screen.height/3);
	var d = myPGWindow.document;
	d.write('<body style="padding:0; margin:0; width:'+imgWidth+'px; height:'+imgHeight+'px; background:#222;">');
	d.write('<img src="/files/photogallery/'+ imgName+'" style="padding:0; margin:0;" />');
	d.write('</body>');
	d.close();

	if (myPGWindow == null)
	{
		alert("Your browser has blocked a page from being displayed.\nPlease add this site to your popup blocker's allow list to ensure your access to all pages on our site.");
	}
	else
	{
		if (myPGWindow.focus)
		{
			myPGWindow.resizeTo(imgWidth,imgHeight);
			myPGWindow.focus();
		}
	}
	return true;
}
