function buildAutocompleterForSearchKeyword() 
{
	new Ajax.Autocompleter(
		'keyword',
		'autoComplete_keyword',
		'/autocomplete/KeywordLookup.aspx',
		{
		   minChars: 3,
		   autoSelect:false,
	  	   afterUpdateElement: function(text, li)
		   {
		   	var entityParts = li.id.split('::');
		   	var entityValue = entityParts[0];
		   	document.getElementById("keyword").value = entityValue;
		   	document.getElementById("brandorproductdescription").value = entityValue;
		   },
		   autoParams: ['sid']
		}
	);
}