document.write('<form name="metasearch" onsubmit="search()" action=""><table border="0" cellpadding="0" cellspacing="0"><tr><td nowrap align="center">');
document.write('<td><input name="query" style="FONT-SIZE: 10px; HEIGHT: 13px" type="text" size="10" maxlength="100">');
document.write('<select style="FONT-SIZE: 10px; HEIGHT: 19px" name="engine"><option>Где искать?</option>');
document.write('<option>На сайте</option>');
document.write('<option>На Яndex</option>');
document.write('<option>На Google</option>');
document.write('<input type="button" style="FONT-SIZE: 10px" value="Ищем!" onclick="search()">');

document.write('</td></tr></table></form>');

function search()
{
 zoekTerm = document.metasearch.query.value;    
 if(zoekTerm != "")
 {
  zoekTerm = zoekTerm.replace(/\s/ig, "+");
  
  zoekMachine = document.metasearch.engine.selectedIndex;
  eindTerm = "";

  if(zoekMachine == 1)
  {eindTerm = "http://www.nevyansk.org.ru/search/"+zoekTerm;
  }
  else if(zoekMachine == 2)
  {eindTerm = "http://www.yandex.ru/yandsearch?text="+zoekTerm;
  }
  else if(zoekMachine == 3)
  {eindTerm = "http://www.google.com/search?q="+zoekTerm;
  }
    
  if(zoekMachine != 44 && zoekMachine != 0)
  {
    zoekraam=window.open(eindTerm,"zoekresultaat","width=screen.availWidth,height=screen.availHeight,scrollbars,toolbar,menubar=1,location=1,resizable=1,status=1,directories=0,top=0,left=0");
    zoekraam.focus();
  }
 }
}

