﻿
var timer=null;
var image=null;
var title=null;

function ShowImage(id,name) {
	image=new Image();
	image.src='picture.php?lok=img_oryginal&nr='+id;
	title=name;
	LoadImage();
}
function LoadImage() {
	if(image.complete) {
		ShowWindow();
		timer=null;
		image=null;
		title=null;
	}
	else
		timer=setTimeout("LoadImage()",100);
}
function ShowWindow() {
	win=window.open('about:blank','','scrollbars=no,width='+(image.width+40)+',height='+(image.height+40)+',left='+(window.screen.width-(image.width+40))/2+',top='+(window.screen.height-(image.height+40))/2+',resizable=no');
	with(win.document) {
		writeln('<html><head><title>'+title+'</title><style type="text/css">body{margin:0px;}</style></head>');
		writeln('<body scroll="no" onload="self.focus()" onblur="self.close()" style="cursor:pointer" onclick="window.close()">');
		writeln('<img src="'+image.src+'" style="margin:20"></body></html>');
		close();
	}
}

