function open_photo(url, img_title) {
	popupWin = window.open("", "photo_usadba", "frameborder=0,toolbar=0,location=0,directoties=0,status=0,menubar=0,resizable=1,width=600,height=450");
	popupWin.document.open();
	var CR = '\n';
	str = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/html4/strict.dtd">' + CR;
	str += '<html>' + CR;
	str += '<head>' + CR;
	str += '<title>' + img_title + '</title>' + CR;
	str += '</head>' + CR;
	str += '<body style="margin: 0px; background-color: #E4EFC0; text-align: center;">' + CR;
	str += '<img src="' + url + '" border="0" alt="' + img_title + '" title="' + img_title + '">' + CR;
	str += '</body>' + CR;
	str += '</html>' + CR;
	popupWin.document.write(str);
	popupWin.document.close();
	popupWin.focus();
}

