<!--
var wnd;
// функция открытия окна с какой-либо картинкой
function openImageWindow(src, width, height, title) {
	title = title.replace('\"', '\\"');
	wnd = window.open("", "imageWindow", 
	"width="+width+",height="+height+",scrollbars=yes,status=no,toolbar=no,location=no,menubar=no,resizable=no,screenX=200,screenY=100,minimize=no;maximize=no;minimize=0;maximize=0");
	var doc = wnd.document;
	doc.open();
	doc.write('<html><head><title>' + title + '</title>'+
                        '<SCRIPT LANGUAGE="JavaScript">window.resizeTo('+width+', '+height+'); window.focus(); </SCRIPT>'+
'</head>' + 
'<body BGCOLOR="#ffffff" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">' +
'<img src="' + src + '" width="' + width + '" height="' + height + 
'" vspace="0" hspace="0" border="0" alt="' + title + '">' +
'</body></html>'
);
return false;
}
//-->

