function openpic(imgsrc,title,desc)
	{
	var d, t;
	if (desc) { d = "<div style='margin:10px; text-align:center;'>" + desc + "</div>"; } else { d = ""; }
	if (title) { t = title; } else { t = ""; }
	var layout = "";
	var x = Math.round((screen.width-550)/2);
	var y = 50;
	layout = (navigator.product != "Gecko") ? "left=" + x + ",top=" + y : "screenX=" + x + ",screenY=" + y;
	title = (title) ? " - " + title : ""; 
	z = window.open("","zw","resizable=yes,menubar=no,toolbar=no,scrollbars=yes,status=no,width=550,height=450,"+layout);
	z.document.open();
	z.document.write("<html><head><title>"+ t + "</title><link href=global.css rel=stylesheet type=text/css><style type=text/css> * { font-size:12px; } </style></head><body bgcolor=#83bf4e bottommargin=7 leftmargin=7 rightmargin=7 topmargin=7 marginheight=7 marginwidth=7><table cellpadding=0 cellspacing=0 border=0 width=100% height=100%><tr><td align=center><div style='padding:7px; border:1px solid #39aaff; background-color:#ffffff; text-align:center;'><a href='javascript:self.close()'><img style='border:1px solid #39aaff;' src='" + imgsrc + "' alt='закрыть окно' title='закрыть окно' border=0></a>" + d + "</div></td></tr></table></body></html>");
	z.document.close();
	z.focus();
	}
