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=no');

	width = width - 30;

	height = height - 30;

	w.document.write('<html><head><title>Sketcher - Content Management System of New Generation</title></head><body bgcolor="#218091" 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: #FF0000 1px solid;" alt="Закрыть окно" src="' + url + '"></td></tr></table></body></html>');

	w.focus();

}