
function search() {
  div = document.getElementById('keywords');
  coreGet('itemList', 'product.find.rpc?keywords=' + div.value, 'keywords');
}

function initFocus() {
  div = document.getElementById('keywords'); div.focus();
}

YAHOO.util.Event.addListener(window, "load", initFocus);

