/* 

Home page find products search 
 
/js/ajax/HTTPRequest.js  must be called to use these ajax calls 

*/

function setOptions(channel) 
{
     
       var divContent = document.getElementById("company_options");
       divContent.innerHTML  = '<select name="loading"><option> Loading brands list, please wait...</option></select>';
       
       if (http_s){        
	var url = "/cnetuk/ajax/select.htm?channel=" + channel;
      	http_s.open("GET", url, true);
	http_s.onreadystatechange = _showOptions;
	http_s.send(null);
        }
}

function _showOptions(){
  
    if (http_s.readyState == 4) {
	var divContent = document.getElementById("company_options");
	divContent.innerHTML = http_s.responseText;
	
    }

}