
        var http = false;        

         try { 
            http = new XMLHttphttpuest(); /* e.g. Firefox */ 
            } catch(e) { 
            try { 
                http = new ActiveXObject("Msxml2.XMLHTTP");  /* some versions IE */ 
            } catch (e) { 
                try { 
                http = new ActiveXObject("Microsoft.XMLHTTP");  /* some versions IE */ 
                
                } catch (E) { 
                http = false; 
                }  
            }  
        }
        
        if (!http && typeof XMLHttpRequest!='undefined') {
            try {
                http = new XMLHttpRequest();
            } catch (e) {
                http=false;
            }
        }

        window.onload = function ()   {
            tamingselect();
            data = ['nodata'].sort();
            AutoComplete_Create('query', data, 6);
        }
        // Break out of frames. This facilitates the search working as expected
            if (top.location.href != location.href) {
                top.location.href = location.href;
            }
