// JavaScript Document
function showPhoto(galId) {
	sWidth = screen.availWidth;
	sHeight = screen.availHeight;
	
	winWidth =  550;
	winHeight = 530;
	
	sLeft = (sWidth - winWidth) / 2;
	sTop = (sHeight - winHeight) / 2;
	
	window.open("showImg.php?galId=" + galId, "Aryeh", "width=" + winWidth + ",height=" + winHeight + ",top=" + sTop + ",left=" + sLeft + ",toolbar=0,menubar=0,status=0,scrollbars=1,resizable=0");
	return;
}
