function openWin(w,h,sr,n)
{
	var x = screen.availWidth;  // меряем разрешение юзера по ширине
	var y = screen.availHeight; // меряем разрешение юзера по высоте
	var idSuffix = Math.round(Math.random()*1000);
	// собираем и отдаем браузеру
	New=window.open("","New" + idSuffix,"width="+w+",height="+h+",left="+(x-w)/2+",top="+(y-h)/2+",titlebar=no,toolbar=no,location=no,status=no,menubar=no,scrollbar=no,resizable=no");
	New.document.write("<html><head><title>"+n+"</title></head>")
	New.document.write("<body basefont size='-2' font color='red' topmargin='0' leftmargin='0' marginwidth='0' marginheight='0'>")
	New.document.write("<table width='100%' height='100%'><tr valign='middle'><td align='center'><img src="+sr+" border='0'></td></tr></table>")
	New.document.write("</body></html>");
	// передаём фокус окну //
	New.window.focus();
} 
