<!--
var strQuery = location.search.substring(1);
var iPos = strQuery.indexOf('searchbox=');
if (iPos != -1)
  {
  // Get everthing after the searchbox=
  var strOtherArgs = strQuery.substring(iPos + 10);
  
  // Look for the start of another argument. They are delimited by ampersands
  var iEndArg = strOtherArgs.indexOf('&');
  if (iEndArg != -1) 
    {
    // If other args, just get this one
    var strSearch = strOtherArgs.substring(0, iEndArg);
    }
  else
    {
    // No others. We already have what we want
    var strSearch = strOtherArgs;
    }

  var b = getBannerCode();
  LPPSearch(strSearch, b);
  } // -->

