function NewWindow(mypage,focus,myname,w,h,scroll)
{
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings ='height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
if(focus==1)
  {
   win.focus();
  }
}

function onEnterSearchRu(el,event)
{
  ecode = (event.keyCode ? event.keyCode : event.which ? event.which : null);
  if(ecode==13)
    if(el.value!="") { find=el.value; if(find.length>=3) location.href="search.php?find="+find; else alert("Введите минимум три символа");}
}
