function search()
{
	var f = eval('document.search');
	var q = f.q.value;
	if (f.starget[1].checked) {
	 window.open('http://www.google.com/search?hl=ru&ie=windows-1251&q=' + q,'search', 'dependent=yes,titlebar=yes,menubar=yes, scrollbars=1');
	 //return false;
	} else {
	  f.submit();
	}
	
}

function OpenWin(win,srcFile,popW,popH,scrol) {
  popH=popH+1;
  popW=popW+1;
  WinW=(document.all)? document.body.clientWidth : window.innerWidth ;
  WinH=(document.all)? document.body.clientHeight : window.innerHeight;
  parStr = 'HEIGHT=' + popH + ',WIDTH=' + popW + 'top=0,screenY=0,left='+(WinW-popW)+',screenX=0,scrollbars=1,status=1,resizable=1';
  w = window.open(srcFile,win,parStr);
  w.focus();
}

