<!--
function getBannerCode()
  {
  var strBanner = '100';
  var strQuery  = location.search;
  var iPos = strQuery.indexOf('b=');
  if (iPos != -1)
    {
    // Get everthing after the 'b='
    var strOtherArgs = strQuery.substring(iPos + 2);
  
    // 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
      strBanner = strOtherArgs.substring(0, iEndArg - 1);
      }
    else
      {
      // No others. We already have what we want
      strBanner = strOtherArgs;
      }
    } 
  return(strBanner);  
} // -->

