document.onkeydown=function(e){
   e=e||event
   var t=e.target||e.srcElement
   if(e.keyCode==13)  siteSearch(0);
   else if(e.keyCode==27) {
        document.getElementById("searchResultBlock").style.display = "none";
        document.getElementById("info_blocks").style.display = "block";
   }
}
//-------------------------------------------
//Вывод значения первого элемента объекта
function getTDValue(obj){
   if (obj.nodeType == 3) obj = obj.nextSibling  //for Mozilla
   return   obj.firstChild.nodeValue
}

//   Выводит на экран Свойства текущего объекта
function ObjProrerties(x){
  document.write("<table border=1 cellspacing=0 cellpadding=0>");
  document.write("<tr><td align=center><b>Свойства объекта "+x.nodeName+"</b></td></tr>");
  for (i in x){
    document.write("<tr><td style='padding-left:5px;'>"+i+"</td></tr>");
  }
  document.write("</tbody></table>");
}
//------------------------------------------
function siteSearch( startIndex ){

   var txt = document.getElementById("searchedText").value
   if (txt != ""){
      document.getElementById("searchResultBlock").style.display = "block";  //отображение дивы результатов
      document.getElementById("info_blocks").style.display = "none";         //прячем инфоблоки
//      window.open("", "_blank", "width=770, height=560, location=no,menubar=no, status=no, toolbar=no",false)
      makeSearch(txt, startIndex,'')
   return false;
   }
}
