


function _openImg(img, titl, css, wd, he)
{
	w0 = wd + 50;
	h0 = he + 100;
	scr0 = "no";
	if (w0>800 || h0>600 )
	{
		scr0 = "yes";
	}
	//alert("QQQ!!!");
	cc = "<html>\n<head>\n";
	cc += "<title>" + titl + "</title>\n";
	cc += "<meta http-equiv='Content-Type' content='text/html; charset=Windows-1251'>\n";
	cc += "<meta http-equiv='imagetoolbar' content='no'>\n";
	cc += "<link type='text/css' rel='stylesheet' href='" + css + "' >\n";
	cc += "</head>\n<body>\n";
	cc += "<p align='center' class='normal'>\n";
	cc += "<img vspace='10' border='0' src='" + img + "' width='" + wd + "' height='" + he + "' ><br>\n";
	//cc += "<p align='center' class='normal'>\n";
	//cc += "<a href='#' onclick='javascript:self.close()'>Закрыть</a>\n";
	cc += "</body>\n</html>\n";
	st = "toolbar=no, location=no, directories=no, status=no, ";
	st += "menubar=no, scrollbars=" + scr0 + ", resizable=yes, copyhistory=yes ";
	st += ", top=1, left=1, width=" + w0 + ", height=" + h0;
	wnd = window.open("", null, st);
	wnd.document.write(cc);
	wnd.document.close();
	wnd.focus();
}















