function OnClickImage(n, imageWidth, imageHeight) {
	var windowWidth = (imageWidth > screen.availWidth) ? screen.availWidth : imageWidth + 20;
	var windowHeight = (imageHeight > screen.availHeight) ? screen.availHeight : imageHeight;
	
	window.open("02_ShowBigImage.php?n=" + n, "ImageWindow", "left=0,top=0,width=" + windowWidth + ",height=" + windowHeight + ",resizable=yes,scrollbars=yes");
}
