{
  function startsWith( s, prefix )
  {
    return s.substring( 0, prefix.length ) == prefix;
  }

  var url = window.location.href;
  var child_url = "";
  var child_node = -1;

  var prefixes = {
    "http://www.bizjournals.com/":6990
  };

  // Find longest url that is prefix of the page's url.
  for (nurl in prefixes) {
    if (startsWith( url, nurl ) && nurl.length > child_url.length) {
      child_url = nurl;
      child_node = prefixes[nurl];
    }
  }

  if (child_node!=-1) {
    document.write( '<scr'+'ipt src="http://content.dl-rms.com/rms/'+child_node+'/nodetag.js"></scr'+'ipt>' );
  }
}
