var fc_result = document.body.innerHTML.match(/free credit report/i);
if (fc_result)
{
	var div = document.createElement('div');
	div.innerHTML = '<center>You have the right to a free credit report from <a href="http://www.annualcreditreport.com" target="_blank" style="text-decoration: none;">AnnualCreditReport.com</a> or 877-322-8228, the <b>ONLY</b> authorized source under federal law.</center>';
	div.style.position = 'absolute';
	div.style.top = '0px';
	div.style.left = '0px';
	div.style.width = '100%';
	div.style.fontSize = '11px';
	div.style.backgroundColor = '#FFF6E7';
	div.style.textAlign = 'center';
	div.style.border = '1px solid #CCCCCC';
	div.style.padding = '3px';
	div.style.clear = 'both';
	document.body.style.marginTop = '20px';
	document.body.appendChild(div);
}
