/* EOS-421,To create autosuggest functionality in dealer commander and throught the site dc/sc*/
function suggestOptions(nextitemId) {

	var options_xml = {
		script:"/modules/quick_order/quick_sku_entry_lookup.php?",
		varname:"input",
		minchars:"3",
		timeout:"4000",
		delay:"0",
		shownoresults:"true",
		noresults:"SKU not found"
	};
	//
	//     allow for customer quick order entry which may have 20 input
	//     fields on the screen
	//
	//	var as_xml = new AutoSuggest('quick_sku', options_xml);
	if(nextitemId!=null)
	{
		var as_xml = new AutoSuggest(nextitemId, options_xml);
		return;
	}
}
/* EOS-421,To create autosuggest functionality in dealer commander and throught the site dc/sc*/



