//is used to capture sessionID when crossing domain.

function mboxAppendSession() 
{
  var _appendSession = function(_tag) 
  {
    var _tags = document.getElementsByTagName(_tag);
	
    for(var i = 0; i < _tags.length; i++) 
	{
      var _t = _tags[i].href; 
		//this is to fix a bug in IE - without this one this URL will turn into a long one and breaking the page
      if((_t)  && (_t != 'https://www.annualcreditreport.com/'))
	  {
        if (_t.indexOf('javascript') == -1) 
		{
          var _glue = (_t.indexOf('?') > -1) ? '&' : '?';
		 
          _tags[i].href += _glue + "mboxSession=" + mboxFactoryDefault.getSessionId().getId();
        }
      }
    }
  };
  _appendSession('a');
 
}