/////////////////////////////////////////////////////////////////////////////
// Function : NavNode (constructor)
// Comments :
/////////////////////////////////////////////////////////////////////////////
function NavNode(id, label, href, parent)
{
	this.m_parent = null;
	this.m_level = 0;

	if (parent)
	{
		this.m_parent = parent;
		this.m_level = parent.m_level+1;
	}

	this.m_id = id;

	// assume that m_label will most often be used directly as HTML
	this.m_rawlabel = label;

	label = label.replace(/&/g, '&amp;');
	label = label.replace(/</g, '&lt;');
	label = label.replace(/>/g, '&gt;');
	label = label.replace(/"/g, '&quot;');

	this.m_label = label;

	this.m_href = href;
	this.m_subNodes = new Array();

	var argValues = NavNode.arguments;
	var argCount = NavNode.arguments.length;

	for (i = 4 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("this.cp_" + attrName + " = '" + attrValue + "';");
	}

	NavNode.prototype.addNode = addNode;
	NavNode.prototype.isSelected = isSelected;
}

/////////////////////////////////////////////////////////////////////////////
// Function : addNode
// Comments :
/////////////////////////////////////////////////////////////////////////////
function addNode(id, label, href)
{
	var newIndex = this.m_subNodes.length;
	var newNode = new NavNode(id, label, href, this);

	var argValues = addNode.arguments;
	var argCount = addNode.arguments.length;

	for (i = 3 ; i < argCount ; i++)
	{
		var attrName = argValues[i].split("==")[0];
		var attrValue = argValues[i].split("==")[1];

		eval("newNode.cp_" + attrName + " = '" + attrValue + "';");
	}

	this.m_subNodes[newIndex] = newNode;
	return newNode;
}

/////////////////////////////////////////////////////////////////////////////
// Function : isSelected
// Comments :
/////////////////////////////////////////////////////////////////////////////
function isSelected()
{
    var pos = window.location.href.lastIndexOf("/");
    var docname = window.location.href.substring(pos+1, window.location.href.length);

    pos = this.m_href.lastIndexOf("/");
    var myname = this.m_href.substring(pos+1, this.m_href.length);

    if (docname == myname)
		return true;
	else
		return false;
}

/////////////////////////////////////////////////////////////////////////////
// Function : customSectionPropertyExists
// Comments :
/////////////////////////////////////////////////////////////////////////////
function customSectionPropertyExists(csp)
{
	return (typeof csp != _U && csp != null);
}

/////////////////////////////////////////////////////////////////////////////
// Function : getCustomSectionProperty
// Comments :
/////////////////////////////////////////////////////////////////////////////
function getCustomSectionProperty(csp)
{
	if (customSectionPropertyExists(csp))
	{
		return csp;
	}
	else
	{
		return "";
	}
}

/////////////////////////////////////////////////////////////////////////////

var g_navNode_Root = new NavNode('292','Home',ssUrlPrefix + 'index.htm',null,'Description==Learn more about Vista\\x27s Medicaid options in Florida.','Keywords==Vista \x7c Medicaid in Florida \x7c Florida Medicaid \x7c Florida Medicaid health insurance \x7c Florida Medicaid health plan \x7c Florida Healthy Kids \x7c Florida Nursing Home Diversion','SectionBannerImage==MedicaidSeekingCoverageFooterPages.jpg','SectionIdPrefix==mdcaidfl-','ShowLoginBox==TRUE','UseImageCallouts==TRUE');
g_navNode_0=g_navNode_Root.addNode('mdcaidfl-for-members','For Members',ssUrlPrefix + 'for-members/index.htm','Description==Find out how our secure member portal, makes it easier for you to find, use, and control your personal health and benefits information online.','Keywords==My Online Services \x7c Coventry member portal \x7c personal health assistant \x7c personal health record \x7c PHR \x7c locate a provider \x7c locate a pharmacy \x7c find a provider \x7c find a pharmacy \x7c health risk assessment \x7c hospital quality rating \x7c physician quality ratin','SectionBannerImage==MedicaidForMembers.jpg','ShowLoginBox==TRUE','TurnOnAdditionalCR==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_0=g_navNode_0.addNode('mdcaidfl-benefits-and-servic','Benefits \x26 Services',ssUrlPrefix + 'for-members/benefits-and-services/index.htm','Description==Vista offers many benefits and services to you. We want to make sure you get good health care.','Keywords==Vista benefits and services \x7c Vista benefits \x7c Vista provider search \x7c Vista prescription benefits','SectionIdPrefix==mdcaidfl-','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_0_0=g_navNode_0_0.addNode('mdcaidfl-benefits-overview','Benefits Overview',ssUrlPrefix + 'for-members/benefits-and-services/benefits-overview/index.htm','Description==Learn more about how we help to manage your covered benefits.','Keywords==Vista benefits \x7c Florida Medicaid Benefits','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_0_1=g_navNode_0_0.addNode('mdcaidfl-find-provider','Find a Provider',ssUrlPrefix + 'for-members/benefits-and-services/locate-a-provider/index.htm','Description==Find a participating provider in your area.','Keywords==Vista provider network \x7c find a provider \x7c find a doctor \x7c find a hospital \x7c provider search \x7c search for a participating provider \x7c search for a doctor \x7c search for a provider \x7c search for a hospital','ShowLoginBox==TRUE','TurnOnAdditionalCR==FALSE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_0_0_2=g_navNode_0_0.addNode('mdcaidfl-service-area','Service Area',ssUrlPrefix + 'for-members/benefits-and-services/service-area/index.htm','Description==View our service area.','Keywords==Vista service area \x7c Florida Medicaid plan service area ','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_0_3=g_navNode_0_0.addNode('mdcaidfl-prescription-benef','PRESCRIPTION BENEFITS',ssUrlPrefix + 'for-members/benefits-and-services/prescription-benefits/index.htm','isLabel==TRUE');
g_navNode_0_0_4=g_navNode_0_0.addNode('mdcaidfl-presc-formulary','Drug Formulary',ssUrlPrefix + 'for-members/benefits-and-services/drug-formulary/index.htm','Description==Download a list of our covered drugs.','Keywords==Vista drug formulary \x7c Vista formulary \x7c drug formulary','SectionIdPrefix==mdcaidfl-','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_0_5=g_navNode_0_0.addNode('mdcaidfl-pharmacy-locator','Find a Pharmacy',ssUrlPrefix + 'for-members/benefits-and-services/pharmacy-locator/index.htm','Description==Find a participating pharmacy near you.','Keywords==participating pharmacy \x7c find a pharmacy','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_0_6=g_navNode_0_0.addNode('mdcaidfl-tips-about-meds','Tips About Your Medicines',ssUrlPrefix + 'for-members/benefits-and-services/tips-about-your-medicines/index.htm','Description==Learn helpful tips for drug safety.','Keywords==tips about your medicines \x7c drug safety \x7c drug safety tips \x7c medicine tips','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_0_7=g_navNode_0_0.addNode('mdcaidfl-prescription-faq','Frequently Asked Questions',ssUrlPrefix + 'for-members/benefits-and-services/frequently-asked-questions/index.htm','Description==Read some common questions and answers about prescription coverage.','Keywords==pharmacy copay \x7c cholesterol lowering agents \x7c prescription formulary \x7c questions about our formulary \x7c prescription mail-order \x7c prescription drug comparison \x7c prior authorization drugs \x7c prescription quantity limits','ShowLoginBox==TRUE','UseImageCallouts==TRUE');
g_navNode_0_1=g_navNode_0.addNode('mdcaidfl-fl-healthy-kids','Florida Healthy Kids',ssUrlPrefix + 'for-members/florida-healthy-kids/index.htm','Description==Learn more about our Florida Healthy Kids program.','Keywords==Florida Healthy Kids \x7c Kids Medicaid Florida','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_2=g_navNode_0.addNode('mdcaidfl-nursing-home-diver','Nursing Home Diversion',ssUrlPrefix + 'for-members/nursing-home-diversion/index.htm','Description==Learn more about our Nursing Home Diversion program.','Keywords==Florida Nursing Home Diversion \x7c Nursing Home Diversion','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_3=g_navNode_0.addNode('mdcaidfl-how-to-use-benefits','How to Use Your Benefits',ssUrlPrefix + 'for-members/how-to-use-your-benefits/index.htm','Description==Learn how to use your benefits','Keywords==Vista benfits \x7c Vista how to use benefits','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_4=g_navNode_0.addNode('mdcaidfl-special-programs','Special Programs',ssUrlPrefix + 'for-members/special-programs/index.htm','Description==Learn more about the special programs we offer.','Keywords==Vista special programs \x7c disease management \x7c WIC \x7c Women, Infacts and Children ','ShowLoginBox==TRUE','TurnOnAdditionalCR==TRUE','Use2COLBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_4_0=g_navNode_0_4.addNode('mdcaidfl-disease-mgmt','Disease Management',ssUrlPrefix + 'for-members/special-programs/disease-management/index.htm','Description==Learn more about how we help you manage illnesses and chronic diseases.','Keywords==disease management \x7c Vista disease management \x7c disease management program','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_0_4_1=g_navNode_0_4.addNode('mdcaidfl-women-infants-child','Women, Infants \x26 Children',ssUrlPrefix + 'for-members/special-programs/women-infants-and-children/index.htm','Description==Read more information about WIC.','Keywords==women infants and children \x7c WIC \x7c Florida WIC \x7c Florida women infants and children','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_0_5=g_navNode_0.addNode('mdcaidfl-know-rights','Know Your Rights',ssUrlPrefix + 'for-members/know-your-rights/index.htm','Description==Know your rights as a member of our health plan.','Keywords==Vista member rights \x7c Vista member rights and responsibilites \x7c Vista member satisfaction \x7c advance directives','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_5_0=g_navNode_0_5.addNode('mdcaidfl-rights-resp','Rights \x26 Responsibilities',ssUrlPrefix + 'for-members/know-your-rights/rights-and-responsibilities/index.htm','Description==Read your rights and responsibilities as a member of our health plan.','Keywords==Vista member rights \x7c Vista member responsibilities \x7c Vista member rights and responsibilities','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_5_1=g_navNode_0_5.addNode('mdcaidfl-member-satisfaction','Member Satisfaction',ssUrlPrefix + 'for-members/know-your-rights/member-satisfaction/index.htm','Description==Read more about how we want to improve the services we are providing you.','Keywords==Vista member satisfaction \x7c Vista appeal \x7c Vista grievance \x7c Vista quality \x7c Vista member satisfaction survey \x7c Vista member satisfaction survey results','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_5_2=g_navNode_0_5.addNode('mdcaidfl-advance-directives','Advance Directives',ssUrlPrefix + 'for-members/know-your-rights/advance-directives/index.htm','Description==Learn more about Advance Directives','Keywords==advance directives \x7c living will \x7c medical power of attorney','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_0_6=g_navNode_0.addNode('mdcaidfl-member-faq','Frequently Asked Questions',ssUrlPrefix + 'for-members/frequently-asked-questions/index.htm','Description==Find answers to common questions that members ask us.','Keywords==Vista FAQ \x7c Vista Frequently Asked Questions \x7c Vista member FAQ \x7c Vista member frequently asked questions ','ShowLoginBox==TRUE','UseImageCallouts==TRUE');
g_navNode_0_7=g_navNode_0.addNode('mdcaidfl-members-news','News/Messages',ssUrlPrefix + 'for-members/news-messages/index.htm','Description==Read the latest news and messages from Vista.','Keywords==Vista news \x7c Vista messages','SectionIdPrefix==mdcaidfl-','ShowLoginBox==TRUE','TurnOnAdditionalCR==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_1=g_navNode_Root.addNode('mdcaidfl-staying-healthy','Staying Healthy',ssUrlPrefix + 'staying-healthy/index.htm','Description==Learn more about how to stay healthy.','Keywords==stay healthy \x7c healthy living \x7c medical emergency \x7c first aid tips \x7c kids health \x7c healthy lifestyle \x7c manage medical conditions \x7c medical conditions \x7c womens health care','SectionBannerImage==MedicaidStayingHealthy.jpg','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_1_0=g_navNode_1.addNode('mdcaidfl-public-events','Public Events',ssUrlPrefix + 'staying-healthy/public-events/index.htm','Description==View upcoming events in your community.','Keywords==Vista public events \x7c Florida Medicaid public events','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_1_1=g_navNode_1.addNode('mdcaidfl-medical-emergency','What is a Medical Emergency?',ssUrlPrefix + 'staying-healthy/what-is-a-medical-emergency/index.htm','Description==Learn more about what a medical emergency is. ','Keywords==medical emergency \x7c what is a medical emergency \x7c when to visit ER \x7c emergency room \x7c ','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_1_2=g_navNode_1.addNode('mdcaidfl-first-aid-tips','First Aid Tips',ssUrlPrefix + 'staying-healthy/first-aid-tips/index.htm','Description==Learn about specific types of First Aid. ','Keywords==first aid tips \x7c tips for first aid','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_1_3=g_navNode_1.addNode('mdcaidfl-kids-health','Focus on Kids Health',ssUrlPrefix + 'staying-healthy/focus-on-kids-health/index.htm','Description==Read tips on how to keep your child well.','Keywords==kids health \x7c childrens health \x7c healthy recipes \x7c health information for kids \x7c health information for teens \x7c health information for children','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_1_4=g_navNode_1.addNode('mdcaidfl-healthy-lifestyle','Have a Healthy Lifestyle',ssUrlPrefix + 'staying-healthy/have-a-healthy-lifestyle/index.htm','Description==Learn how to have a healthy lifestyle.','Keywords==healthy lifestyle \x7c have healthy lifestyle \x7c healthy living','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_1_5=g_navNode_1.addNode('mdcaidfl-medical-conditions','Managing Medical Conditions',ssUrlPrefix + 'staying-healthy/managing-medical-conditions/index.htm','Description==Learn about your disease.  Make informed health care decisions and stay healthy. ','Keywords==medical treatments \x7c medical conditions \x7c healthy \x7c Manage medical conditions \x7c common medical treatments \x7c CareTips','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_1_6=g_navNode_1.addNode('mdcaidfl-womens-care','Women\'s Care',ssUrlPrefix + 'staying-healthy/womens-care/index.htm','Description==Learn more about health problems women may face. ','Keywords==womens health care \x7c healthy women ','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_1_7=g_navNode_1.addNode('mdcaidfl-extra-help','Extra Help',ssUrlPrefix + 'staying-healthy/extra-help/index.htm','Description==Find helpful resources in your community. ','Keywords==Vista extra help \x7c Florida Medicaid extra help \x7c Head start \x7c Florida Head start \x7c Florida 2-1-1 \x7c Food Banks \x7c Florida Food banks','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_2=g_navNode_Root.addNode('mdcaidfl-contact-us','Contact Us',ssUrlPrefix + 'contact-us/index.htm','Description==Find out how to get in touch with a Vista representative in your area.','Keywords==contact Vista \x7c Vista contacts \x7c find Vista representative \x7c find Vista representative \x7c Vista contact information','SectionBannerImage==MedicaidContactUs.jpg','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3=g_navNode_Root.addNode('mdcaidfl-for-providers','For Providers',ssUrlPrefix + 'for-providers/index.htm','Description==Read about how Vista helps new and current providers cultivate their practices by leveraging the trusted network solutions offered by Coventry. ','Keywords==Vista providers \x7c Vista provider information \x7c Vista provider network \x7c Coventry provider network \x7c join Florida Medicaid network \x7c join Vista network \x7c Coventry providers \x7c Coventry Health Care providers','SectionBannerImage==MedicaidForProviders.jpg','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3_0=g_navNode_3.addNode('mdcaidfl-providers-news','Announcements/News',ssUrlPrefix + 'for-providers/announcements-news/index.htm','Description==Read the latest news and announcements from Vista.','Keywords==Vista news \x7c Vista announcements','SectionIdPrefix==mdcaidfl-','ShowLoginBox==TRUE','TurnOnAdditionalCR==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3_1=g_navNode_3.addNode('mdcaidfl-electronic-solution','Electronic Solutions',ssUrlPrefix + 'for-providers/electronic-solutions/index.htm','Description==Learn more about all of our available electronic solutions.','Keywords==EDI \x7c ERA \x7c claims inquiry \x7c eligibility \x7c electronic remittance advice \x7c authorization submission \x7c free provider portal \x7c provider portal \x7c secure provider portal','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3_1_0=g_navNode_3_1.addNode('mdcaidfl-secure-provider-por','Secure Provider Portal',ssUrlPrefix + 'for-providers/electronic-solutions/secure-provider-portal/index.htm','Description==We give you the FREEdom to go direct.  Learn how directprovider.com allows you to connect directly to our data management system so that you can get the most up to date information.','Keywords==free provider portal \x7c provider portal \x7c benefits \x7c eligibility \x7c online remittance advices \x7c claims inquiry \x7c resource library \x7c authorizations \x7c secure provider portal','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3_1_1=g_navNode_3_1.addNode('mdcaidfl-edi-documentation','EDI Documentation',ssUrlPrefix + 'for-providers/electronic-solutions/edi-documentation/index.htm','Description==Read our EDI documentation for more information on all of our available electronic solutions.','Keywords==EDI \x7c ERA \x7c claims inquiry \x7c eligibility \x7c electronic remittance advice \x7c authorization submission ','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3_1_2=g_navNode_3_1.addNode('mdcaidfl-user-support-train','User Support \x26 Training',ssUrlPrefix + 'for-providers/electronic-solutions/user-support-and-training/index.htm','Description==Find out how to register for directprovider.com training.','Keywords==directprovider.com training \x7c directprovider.com training registration \x7c register for directprovider.com training ','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3_2=g_navNode_3.addNode('mdcaidfl-network-particip','Network Participation',ssUrlPrefix + 'for-providers/network-participation/index.htm','Description==Learn how you can nominate your practice for our network and learn more about our credentialing criteria.','Keywords==Coventry provider network participation \x7c Join coventry\\x27s provider network \x7c participate in provider network \x7c Vista provider network participation \x7c Join Vista\\x27s provider network','ShowLoginBox==TRUE','TurnOnAdditionalCR==TRUE','Use2COLBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3_2_0=g_navNode_3_2.addNode('mdcaidfl-provider-nomination','Provider Nomination',ssUrlPrefix + 'for-providers/network-participation/provider-nomination/index.htm','Description==Learn how you can nominate your practice for the our network. Complete a Provider Nomination form to get started.','Keywords==Coventry provider network participation \x7c Join coventry\\x27s provider network \x7c participate in provider network \x7c Vista provider network participation \x7c Join Vista\\x27s provider network');
g_navNode_3_2_1=g_navNode_3_2.addNode('mdcaidfl-credentialing-crit','Credentialing Criteria',ssUrlPrefix + 'for-providers/network-participation/credentialing-criteria/index.htm','Description==Learn more about our credentialing criteria.','Keywords==Coventry provider credentialing \x7c Vista provider credentialing \x7c Coventry network participation \x7c Vista network participation \x7c Coventry participating providers \x7c Vista participating providers','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3_3=g_navNode_3.addNode('mdcaidfl-authorizations','Authorizations',ssUrlPrefix + 'for-providers/authorizations/index.htm','Description==Learn more about our prior authorization requirements.','Keywords==prior authorization requirements \x7c prior authorization drugs \x7c services that require prior authorization','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3_4=g_navNode_3.addNode('mdcaidfl-claims-info','Claims Information',ssUrlPrefix + 'for-providers/claims-information/index.htm','Description==Find out how to submit claims correctly to increases the cash flow to your practice, prevent costly follow-up time by your office or billing staff, and reduce the uncertainty members feel with an unresolved claim. ','Keywords==Vista claims information \x7c Coventry Health Care claims information \x7c coventry claims \x7c Vista claims \x7c Coventry claims information for providers \x7c Vista information for providers \x7c Coventry EDI tools \x7c Vista EDI tools \x7c ','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
g_navNode_3_5=g_navNode_3.addNode('mdcaidfl-practice-guidelines','Practice Guidelines',ssUrlPrefix + 'for-providers/practice-guidelines/index.htm','Description==Learn more about practice guidelines.','Keywords==provider practice guidelines \x7c physician practice safety \x7c clinical guidelines','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_3_6=g_navNode_3.addNode('mdcaidfl-document-library','Document Library',ssUrlPrefix + 'for-providers/document-library/index.htm','Description==View important forms and documents for providers.','Keywords==Vista provider forms \x7c Vista provider documents \x7c connection \x7c provider connection \x7c Vista provider manual \x7c Coventry provider manual \x7c Vista formulary \x7c formulary','ShowLoginBox==TRUE','TurnOnAdditionalCR==TRUE','UseImageCallouts==TRUE','UseMultiDocLibrary==TRUE');
g_navNode_3_7=g_navNode_3.addNode('mdcaidfl-provider-faq','Frequently Asked Questions',ssUrlPrefix + 'for-providers/frequently-asked-questions/index.htm','Description==Find answers to common questions that providers ask us.','Keywords==Vista FAQ \x7c Vista Frequently Asked Questions \x7c Vista provider FAQ \x7c Vista provider frequently asked questions ','ShowLoginBox==TRUE','UseImageCallouts==TRUE');
g_navNode_3_8=g_navNode_3.addNode('mdcaidfl-provider-inquiries','Provider Inquiries',ssUrlPrefix + 'for-providers/provider-inquiries/index.htm','Description==Find out how to get in touch with a Coventry representative in your area.','Keywords==Vista provider contact information \x7c How to contact Vista \x7c Vista customer service \x7c Vista provider relations representative \x7c Coventry provider relations representative','ShowLoginBox==TRUE','UseBlueCallouts==TRUE','UseImageCallouts==TRUE');
