var typeID = 0;

function showResult()
{
  var query = document.getElementById("search").value;
  if (query.length > 2)
  {
    document.getElementById("possibleMatches").style.display = "block";
    document.getElementById("spotlight").src = "search.php?q="+query;
  }
}


function autoFillSearch(str, type)
{
  typeID = type;
  document.getElementById("search").value = str;
  document.getElementById("possibleMatches").style.display = "none";
}


function findItem()
{
  if (typeID == 0)
  { document.location = "http://db.cbs-n.net/spotlight.php?term="+document.getElementById("search").value; }
  else
  { document.location = "index.php?item="+typeID; }
}
