function OpenWin(which,w,h,s)
{
if (s==undefined)s = 0;
if (w==undefined)w = 400;
if (h==undefined)h = 364;
Okno = window.open(which, "news", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars="+s+",resizable=0,width="+w+",height="+h);
Okno.focus();
}