function pup(name,titl,x,y,desc) {
	var d,yy;
	if (desc=='') {d=0} else {d=66}
	yy = y + 34 + d;
	var win = window.open('','_blank',"toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+x+",height="+yy);
	win.document.open("text/html");
	with (win.document) {
		write('<html><head><link type="text/css" rel="stylesheet" href="/includes/css/popup.css"><title>'+titl+'</title><script language="JavaScript">self.focus()</script></head>');
		write('<body marginheight="0" marginwidth="0">');
		write('<table cellpadding="0" cellspacing="0" class="main">');
		write('<tr><th><img src="/imgs/design/logo_popup.gif" width="104" height="20" border="0" alt="Мидель"></th><th><img src="/imgs/design/sp.gif" width="1" height="34" border="0" alt="" class="sp"></th><th><a href="#" onclick="window.close()">закрыть окно</a></th></tr>');
		write('<tr><td colspan="3"><img src="'+name+'" width="'+x+'" height="'+y+'" border="0" alt="'+title+'"></td></tr>');
		if (d!=0) {
			write('<tr><td colspan="3" style="background-color:#036;"><img src="/imgs/design/sp.gif" width="1" height="1" border="0" alt="" class="sp"></td></tr>');
			write('<tr><td colspan="3" style="background-color:#FEE8BB;">'+desc+'<img src="/imgs/design/sp.gif" width="1" height="59" border="0" alt="" class="sp"></td>');
			write('<tr><td colspan="3" style="background-color:#036;"><img src="/imgs/design/sp.gif" width="1" height="6" border="0" alt="" class="sp"></td></tr>');
		}
		write('</table></body></html>');
		close();
	}
}
