
/*----------------------------Suggest Code-------------------------*/
/*
        This is the JavaScript file for the osCommerce AJAX Search Suggest

        You may use this code in your own projects as long as this
        copyright is left        in place.  All code is provided AS-IS.
        This code is distributed in the hope that it will be useful,
         but WITHOUT ANY WARRANTY; without even the implied warranty of
         MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

        For the rest of this code visit http://www.osCommerce-SSL.com

        For a complete detailed tutorial on how this code works visit:
        http://www.dynamicajax.com/fr/AJAX_Suggest_Tutorial-271_290_312.html

        For more AJAX code and tutorials visit http://www.DynamicAJAX.com

        Copyright 2006 Ryan Smith / 345 Technical / 345 Group.


*/
//Gets the browser specific XmlHttpRequest Object
function getXmlHttpRequestObject() {
        if (window.XMLHttpRequest) {
                return new XMLHttpRequest();
        } else if(window.ActiveXObject) {
                return new ActiveXObject("Microsoft.XMLHTTP");
        } else {
                alert("Your Browser Sucks!\nIt's about time to upgrade don't you think?");
        }
}

//Our XmlHttpRequest object to get the auto suggest
var searchReq = getXmlHttpRequestObject();

//Called from keyup on the search textbox.
//Starts the AJAX request.
function searchSuggest() {
        if (searchReq.readyState == 4 || searchReq.readyState == 0) {
                var str = escape(document.getElementById('txtSearch').value);
                searchReq.open("GET",'/test/searchSuggest.php?search=' + str, true);
                searchReq.onreadystatechange = handleSearchSuggest;
                searchReq.send(null);
        }
}

//Called when the AJAX response is returned.
function handleSearchSuggest() {
        if (searchReq.readyState == 4) {
                var ss = document.getElementById('search_suggest')
                ss.innerHTML = '';
                var str = searchReq.responseText.split("\n");
                //Head einfügen
                ss.innerHTML += '<p class=paula align="center"><b>Artikelvorschläge</b></p>';
                for(i=0; i < str.length - 1; i++) {
                        //Build our element string.  This is cleaner using the DOM, but
                        //IE doesn't support dynamically added attributes.
                        var suggest = '<div onmouseover="javascript:suggestOver(this);" ';
                        suggest += 'onmouseout="javascript:suggestOut(this);" ';
                        suggest += 'onclick="javascript:setSearch(this.innerHTML);" ';
                        suggest += 'class="suggest_link">' + str[i] + '</div>';
                        ss.innerHTML += suggest;
                }
                if (i==0) {
                        ss.style.visibility  = "hidden";
                } else {
                        ss.style.visibility  = "visible";
                }
                //Schließen link einfügen
                ss.innerHTML += '<p class=paula align="right"><a onmouseover="javascript:suggestOver(this);" onmouseout="javascript:suggestOut(this);" onClick="javascript:suggestClose(this);" class="suggest_link"><b>CLOSE</b></a></p>';
        }
}
// Close Function
function suggestClose (div_value) {
        document.getElementById('search_suggest').innerHTML = '';
        document.getElementById('search_suggest').style.visibility  = "hidden";
}

//Mouse over function
function suggestOver(div_value) {
        div_value.className = 'suggest_link_over';
}
//Mouse out function
function suggestOut(div_value) {
        div_value.className = 'suggest_link';
}
//Click function
function setSearch(value) {
        // HTML-TAGS entfernen
          var newvalue = value.replace(/<.*?>/gi, '');
        //Kategorienamen entfernen (fängt mit &nbsp; an)
        var Suche =        newvalue.indexOf("&nbsp;");

        var produktname = newvalue.substring(0,Suche);
        var ID = newvalue.substring(0,Suche);
        // Test für ID Übergabe an Suche
        //var Suche =        newvalue.indexOf("&nbsp;");
        //var ID = newvalue.substring(0,Suche);


        document.getElementById('txtSearch').value = produktname;
        document.getElementById('search_suggest').innerHTML = '';
        document.getElementById('search_suggest').style.visibility  = "hidden";
        //zum Suchergebnis weiterleiten
        //top.location.href = "searchadvanced.php?search=" + produktname;
        //top.location.href = "/items/id/" + ID + "/lan/de";
        //parent.mainFrame.location.href = "/item.php?id=" + ID;
        top.location.href = "/id/" + ID;
        }
/*-------------------------End Suggest Code--------------------------------*/