function ScreenRes()
{
	document.write("\" "+screen.width+" x "+screen.height+" \"");
	return true;
}

function ImgWindow ( name, lowsrc, src, width, height )
{
	var window_width = width + 50;
	var window_height = height + 120;

	img_window = window.open ( "", "","toolbar=no, width=" + window_width + ", height=" + window_height );
	img_window.document.write ( "<html>" );
	img_window.document.write ( "<head>" );
	img_window.document.write ( "<title>Zdjêcie.</title>" );
	img_window.document.write ( "</head>" );
	img_window.document.write ( "<body>" );
	img_window.document.write ( "<div align=\"center\" >" );
	img_window.document.write ( "<p>" + name + "</p>" );
	img_window.document.write ( "<img lowsrc=\"" + lowsrc + "\" src=\"" + src + "\" width=\"" + width + "\" height=\"" + height + "\" alt=\"" + name + "\" >" );
	img_window.document.write ( "</div>" );
	img_window.document.write ( "<div align=\"right\">" );
	img_window.document.write ( "<br><a href=\"\" title=\"Zamknij okno.\"onClick=\"javascript:window.close();\">Zamknij okno.</a>" );
	img_window.document.write ( "</div>" );
	img_window.document.write ( "</body>" );
	img_window.document.write ( "</html>" );
}

function ImgShow ( src, width, height )
{
	var window_width = width + 50;
	var window_height = height + 120;

	img_window = window.open ( "pages/galeria.php?image=" + src, "","toolbar=no, width=" + window_width + ", height=" + window_height );
}
