function zoom (file, width, height)
{
	with (Math)
	{
		winpos_left = (screen.availWidth  - width)/2;
		winpos_top  = (screen.availHeight - height)/2;
	}

	nahled = window.open("","","left="+winpos_left+",top="+winpos_top+",width="+width+",height="+height+","+
     "toolbar=no,location=no,directories=no,status=no,menubar=no"+
     ",scrollbars=no,resizable=no,copyhistory=no");

	with (nahled.document)
	{
		open();
		writeln('<html>');
		writeln('<head>');
		writeln('<title>marek lapiš :: Galerie</title>');
		writeln('<link rel="stylesheet" href="styl.css" type="text/css">');
		writeln('</head>');
		writeln('<body class="zoom">');
		writeln('<img src="'+file+'" onClick="window.close();" class="zoom" alt="Click to close ...">');
		writeln('</body>\n</html>');
		close();
		focus();
	}
}


function exifReader (imagefile)
{
	var width  = 250;
	var height = 250;

	with (Math)
	{
		winpos_left = (screen.availWidth  - width)/2;
		winpos_top  = (screen.availHeight - height)/2;
	}

	window.open("exifreader.php?imagefile=" + imagefile,"","left="+winpos_left+",top="+winpos_top+",width="+width+",height="+height+","+
     "toolbar=no,location=no,directories=no,status=no,menubar=no"+
     ",scrollbars=yes,resizable=no,copyhistory=no");
}

