function wop(url, width, height)
{
	width = width + 30;
	height = height + 30;
	var w = window.open('', '', 'width=' + width +', height=' + height + ',status=no,menubar=no,resizable=yes,scrollbars=yes');
	width = width - 30;
	height = height - 30;
	w.document.write('<html><head><title>Boring PR agency</title></head><body bgcolor="#FBEACE" style="cursor: pointer; margin: 0px" onclick=\'javascript:window.close();\'><table border="0" align="center" height="100%" cellspacing="0" cellpadding="0"><tr><td align=center><img border="0" style="border: #4A4935 1px solid;" alt="Закрыть окно" src="' + url + '"></td></tr></table></body></html>');
	w.focus();
}

