// Showing image at "/files/Image/'+pr+'/'+im+'" in window sized w/h
var win=0;

function showImage(im, t, w, h) {
	if (win && !win.closed) {
		win.close();
	}
		win = window.open("", "photo", "width="+w+",height="+h);
	win.document.write('<html><head><meta http-equiv="Content-Type" content="text/html; charset=windows-1251" /><title>'+t+'</title><style type="text/css">* {margin:0} img {border:none}</style></head><body><a href="#" title="Close" onclick="window.close();return false;"><img src="'+im+'" /></a></body></html>');
	win.document.close();win.focus();
	return false;
}
