﻿try{
    (function(){             
       var key=document.getElementById("txtkey");
       var typesearch=document.getElementById("typesearch");
       var form=document.getElementById("frmsearch");
        var reg=/\S+/gi;      
        var locationurl=location.href.toLowerCase();  
        if(locationurl.indexOf("product")!=-1){
           typesearch.selectedIndex=0;
        }  
        else if(locationurl.indexOf("company")!=-1){
           typesearch.selectedIndex=1;
        }
        else if(locationurl.indexOf("news")!=-1){
           typesearch.selectedIndex=2;
        }
        else{typesearch.selectedIndex=0;}
        key.onfocus=function(){      
          if(key.value=="лектрооборудование"){
           key.value="";
          }  
        }        
       form.onsubmit=function(){         
          if(!reg.test(key.value)||key.value==""){            
             key.value="";
             alert("Пожалуйста, введите ключевое слово в строку поиска!");
             return false;
          } 
          switch(typesearch.selectedIndex){
           case 0:
             form.action="/product/productcatalogue.aspx";
           break;
           case 1:
            form.action="/company/search.aspx";
           break;
           case 2:
            form.action="/news/search.aspx";
           break;
          }
          return true;
       }  
       
            
    })();
  } catch(e){}