// To check whether the company is BC or not from the js file created from LCA
bcflag = checkForBC(strTicker);

// alert("strExchangeforBC : "+window.strExchangeforBC);

if (bcflag == "true" && window.strExchangeforBC == "ARCA")	{ // Display ARCA BC Notice
	document.write("<div class='sp20'>");
	document.write("<table width='368' border='0' cellspacing='0' cellpadding='0'><tr valign='top'>");
	document.write("<td width='17'><a name='bcnote'></a><sup><span class='fontbold'>BC</span></sup></td>");
	document.write("<td>This issuer is noncompliant with NYSE Arca quantitative and/or corporate governance listing standards.  A complete list of issuers that are <a href='/regulation/nysearca/arcabcindex.html'>noncompliant with such listing standards</a> is available.");
	document.write("</td></tr></table>");
	document.write("</div>");
}
else if (bcflag == "true")	{ // Display NYSE BC Notice
	document.write("<div class='sp20'>");
	document.write("<table width='368' border='0' cellspacing='0' cellpadding='0'><tr valign='top'>");
	document.write("<td width='17'><a name='bcnote'></a><sup><span class='fontbold'>BC</span></sup></td>");
	document.write("<td>This issuer is noncompliant with NYSE quantitative and/or corporate governance listing standards.  A complete list of issuers that are <a href='/regulation/nyse/bcindex.html'>noncompliant with such listing standards</a> is available.");
	document.write("</td></tr></table>");
	document.write("</div>");
}	

// Display LF Notice
if (lfflag == "true")	{
	document.write("<div class='sp20'>");
	document.write("<table width='368' border='0' cellspacing='0' cellpadding='0'><tr valign='top'>");
	document.write("<td width='17'><a name='lfnote'></a><sup><span class='fontbold'>LF</span></sup></td>");
	document.write("<td>This issuer is delayed in filing a required report pursuant to Section 13 or 15(d) of the Securities Exchange Act of 1934. A complete list of <a href='/regulation/listed/lfindex.html'>late filers</a> is available.");
	document.write("</td></tr></table>");
	document.write("</div>");
}

