/////////////////////////////////////////////////////////////////////////////
// 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 eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		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 eqPos = argValues[i].indexOf("==");
		var attrName = argValues[i].substring(0,eqPos);
		var attrValue = argValues[i].substring(eqPos+2);

		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('5854','Home',ssUrlPrefix + 'home.html',null);
g_navNode_0=g_navNode_Root.addNode('47117','Applicant Information',ssUrlPrefix + 'applicants/home.html','ShowRelatedLinks==false','ShowWhatsInside==false');
g_navNode_1=g_navNode_Root.addNode('47131','GME Administration',ssUrlPrefix + 'central/home.html','ShowDownloads==true');
g_navNode_2=g_navNode_Root.addNode('46956','Program Resources',ssUrlPrefix + 'directors/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_2_0=g_navNode_2.addNode('79018','Appointment Letter Policy and Procedure',ssUrlPrefix + 'directors/appointmentletter/home.html','ShowDownloads==true');
g_navNode_2_1=g_navNode_2.addNode('203645','Coordinator Calendar',ssUrlPrefix + 'directors/coordinatorcalendar/home.html');
g_navNode_2_2=g_navNode_2.addNode('55424','Coordinator Meeting Dates \x26 Monthly Update Newsletters',ssUrlPrefix + 'directors/coordinators/home.html');
g_navNode_2_3=g_navNode_2.addNode('145434','Directors Curriculum Resources',ssUrlPrefix + 'directors/curriculum_resources/home.html','ShowDownloads==true','ShowRelatedLinks==true');
g_navNode_2_4=g_navNode_2.addNode('214779','Document Management',ssUrlPrefix + 'directors/Document_Management/home.html');
g_navNode_2_5=g_navNode_2.addNode('178123','GME Competency Teaching Resources',ssUrlPrefix + 'directors/competteachres/home.html');
g_navNode_2_6=g_navNode_2.addNode('50697','GME Glossaries',ssUrlPrefix + 'directors/gmeglossary/home.html','ShowDownloads==true','ShowRelatedLinks==false','ShowWhatsInside==true');
g_navNode_2_6_0=g_navNode_2_6.addNode('52824','ACGME Abbreviation Glossary',ssUrlPrefix + 'directors/gmeglossary/abbreviation/home.html');
g_navNode_2_7=g_navNode_2.addNode('114529','GME Observers',ssUrlPrefix + 'directors/GME_Observers/home.html','ShowDownloads==true');
g_navNode_2_8=g_navNode_2.addNode('55432','Graduate Medical Education Committee \x28GMEC\x29',ssUrlPrefix + 'directors/gmec/home.html');
g_navNode_2_9=g_navNode_2.addNode('173642','H1B Visa Information',ssUrlPrefix + 'directors/h1bvisainfo/home.html','ShowDownloads==true','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_2_9_0=g_navNode_2_9.addNode('173671','H-1B Visa Processing Fees\x3a Through ISSS',ssUrlPrefix + 'directors/h1bvisainfo/hibprocfeesisss/home.html');
g_navNode_2_9_1=g_navNode_2_9.addNode('173677','H-1B Visa Processing Fees\x3a Through Outside Attorney',ssUrlPrefix + 'directors/h1bvisainfo/h1bvisaprocfeesattorney/home.html');
g_navNode_2_9_2=g_navNode_2_9.addNode('173681','Institution Visa Policy',ssUrlPrefix + 'directors/h1bvisainfo/instvisapolicy/home.html');
g_navNode_2_9_3=g_navNode_2_9.addNode('173683','Steps the Residency Coordinator Must Take for IMGs Policy',ssUrlPrefix + 'directors/h1bvisainfo/stepscoordmusttake/home.html');
g_navNode_2_10=g_navNode_2.addNode('55939','Internal Review Process',ssUrlPrefix + 'directors/internal/home.html');
g_navNode_2_11=g_navNode_2.addNode('48711','New Program Process',ssUrlPrefix + 'directors/gmenewprogproc/home.html','ShowWhatsInside==true');
g_navNode_2_12=g_navNode_2.addNode('214297','PeopleSoft Resources',ssUrlPrefix + 'directors/PeopleSoft_Resources/home.html');
g_navNode_2_13=g_navNode_2.addNode('52629','Program Accreditation',ssUrlPrefix + 'directors/accreditation/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_2_13_0=g_navNode_2_13.addNode('52647','ACGME Abbreviation Glossary',ssUrlPrefix + 'directors/accreditation/glossary/home.html');
g_navNode_2_13_1=g_navNode_2_13.addNode('52641','PIF Hospital Contacts',ssUrlPrefix + 'directors/accreditation/pif/home.html');
g_navNode_2_14=g_navNode_2.addNode('201495','Program Letters of Agreement',ssUrlPrefix + 'directors/programletteragree/home.html');
g_navNode_2_15=g_navNode_2.addNode('57019','Program Policy Manuals',ssUrlPrefix + 'directors/partb/home.html');
g_navNode_2_16=g_navNode_2.addNode('11964','Recruitment Information',ssUrlPrefix + 'directors/RecruitmentInformation/home.html');
g_navNode_2_17=g_navNode_2.addNode('212631','Remediation',ssUrlPrefix + 'directors/remediationresfell/home.html');
g_navNode_2_18=g_navNode_2.addNode('101604','Visiting Resident/Fellow',ssUrlPrefix + 'directors/visres/home.html','ShowDownloads==true');
g_navNode_2_20=g_navNode_2.addNode('11613','VAMC Orientation Requirements for Residents and Fellows',ssUrlPrefix + 'directors/VAMCOrientationRequirementsforResidentsandFellows/index.htm');
g_navNode_3=g_navNode_Root.addNode('205876','Educational Resources',ssUrlPrefix + 'educresources/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_3_0=g_navNode_3.addNode('205879','Curriculum Resources',ssUrlPrefix + 'educresources/curricresources/home.html');
g_navNode_3_1=g_navNode_3.addNode('8511','Program Evaluation',ssUrlPrefix + 'educresources/programevaluation/index.htm');
g_navNode_3_2=g_navNode_3.addNode('8601','Resident Performance Assessment',ssUrlPrefix + 'educresources/residentperformanceassessment/index.htm');
g_navNode_4=g_navNode_Root.addNode('47702','International Medical Graduates and Visa Information',ssUrlPrefix + 'international/home.html','ShowDownloads==true','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_4_0=g_navNode_4.addNode('69877','ECFMG J-2 Offer Letter - Sample',ssUrlPrefix + 'international/ecfmgj-2offerltr/home.html');
g_navNode_4_1=g_navNode_4.addNode('69873','ECFMG Offer Letter - instructions',ssUrlPrefix + 'international/ecfmgofferltrinstr/home.html');
g_navNode_4_2=g_navNode_4.addNode('69869','ECFMG Offer Letter - sample',ssUrlPrefix + 'international/ecfmgofferltr/home.html');
g_navNode_4_3=g_navNode_4.addNode('52653','International Medical Graduate Visa Requirements',ssUrlPrefix + 'international/process/home.html');
g_navNode_4_4=g_navNode_4.addNode('52652','Steps the Resident Coordinator must take for Foreign Medical Graduates',ssUrlPrefix + 'international/steps/home.html');
g_navNode_4_5=g_navNode_4.addNode('172895','Travel Information',ssUrlPrefix + 'international/ecfmgtravelinfo/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_4_5_0=g_navNode_4_5.addNode('172947','Reentry into the United States',ssUrlPrefix + 'international/ecfmgtravelinfo/reentrytous/home.html');
g_navNode_4_5_1=g_navNode_4_5.addNode('172909','Travel Authorization',ssUrlPrefix + 'international/ecfmgtravelinfo/travelauth/home.html');
g_navNode_4_5_2=g_navNode_4_5.addNode('172939','Travel Outside of the U.S.',ssUrlPrefix + 'international/ecfmgtravelinfo/traveloutsideus/home.html');
g_navNode_4_5_3=g_navNode_4_5.addNode('172934','Travel Within the U.S.',ssUrlPrefix + 'international/ecfmgtravelinfo/travelwinus/home.html');
g_navNode_4_5_4=g_navNode_4_5.addNode('172944','Travel to Canada, Mexico, and Adjacent Islands of the United States',ssUrlPrefix + 'international/ecfmgtravelinfo/travelcanmexadjisleus/home.html');
g_navNode_5=g_navNode_Root.addNode('49995','Links',ssUrlPrefix + 'links/home.html');
g_navNode_6=g_navNode_Root.addNode('108236','Observers',ssUrlPrefix + 'observinfo/home.html');
g_navNode_7=g_navNode_Root.addNode('47684','Program Directory',ssUrlPrefix + 'progdirectory/home.html');
g_navNode_8=g_navNode_Root.addNode('46957','Resident \x26 Fellow Resources',ssUrlPrefix + 'residents/home.html','ShowRelatedLinks==true','ShowWhatsInside==true');
g_navNode_8_0=g_navNode_8.addNode('47686','Benefits ',ssUrlPrefix + 'residents/benefits/home.html');
g_navNode_8_1=g_navNode_8.addNode('47692','Dispute Resolution Policy',ssUrlPrefix + 'residents/dispute/home.html');
g_navNode_8_2=g_navNode_8.addNode('47687','FAQ\'s',ssUrlPrefix + 'residents/FAQs/home.html');
g_navNode_8_3=g_navNode_8.addNode('193378','Immunization Compliance Requirements',ssUrlPrefix + 'residents/immuncomplreqs/home.html');
g_navNode_8_4=g_navNode_8.addNode('47688','Institution Policy Manual',ssUrlPrefix + 'residents/instpolicyman/home.html','ShowWhatsInside==true');
g_navNode_8_4_0=g_navNode_8_4.addNode('138799','Administrative Information\x3a GME Administration by Job Duty',ssUrlPrefix + 'residents/instpolicyman/admininfogmeadminjob/home.html');
g_navNode_8_4_1=g_navNode_8_4.addNode('138798','Administrative Information\x3a GME Administration Contact List',ssUrlPrefix + 'residents/instpolicyman/admininfogmeadmincontact/home.html');
g_navNode_8_4_2=g_navNode_8_4.addNode('138696','Administrative Information\x3a GME Mission Statement',ssUrlPrefix + 'residents/instpolicyman/admininfogmemission/home.html');
g_navNode_8_4_3=g_navNode_8_4.addNode('95640','Administrative Information\x3a GME Service Philosophy and Standards',ssUrlPrefix + 'residents/instpolicyman/admininfoservphilstand/home.html');
g_navNode_8_4_4=g_navNode_8_4.addNode('138710','Administrative Information\x3a Goal for GME',ssUrlPrefix + 'residents/instpolicyman/admininfogmegoal/home.html');
g_navNode_8_4_5=g_navNode_8_4.addNode('138687','Administrative Information\x3a Introduction',ssUrlPrefix + 'residents/instpolicyman/admininfointro/home.html');
g_navNode_8_4_6=g_navNode_8_4.addNode('138693','Administrative Information\x3a Medical School Mission Statement',ssUrlPrefix + 'residents/instpolicyman/admininfomsstatement/home.html');
g_navNode_8_4_7=g_navNode_8_4.addNode('138797','Administrative Information\x3a Policy Statement',ssUrlPrefix + 'residents/instpolicyman/admininfopolicystatement/home.html');
g_navNode_8_4_8=g_navNode_8_4.addNode('95641','Administrative Information\x3a University of Minnesota Equal Opportunity Statement',ssUrlPrefix + 'residents/instpolicyman/admininfoequalopport/home.html');
g_navNode_8_4_9=g_navNode_8_4.addNode('69150','Administrative Information\x3a University of Minnesota Physicians',ssUrlPrefix + 'residents/instpolicyman/admininfoump/home.html');
g_navNode_8_4_10=g_navNode_8_4.addNode('68688','Benefits\x3a Boynton Health Services',ssUrlPrefix + 'residents/instpolicyman/beneboynton/home.html');
g_navNode_8_4_11=g_navNode_8_4.addNode('68974','Benefits\x3a Dental Insurance',ssUrlPrefix + 'residents/instpolicyman/benedentalins/home.html');
g_navNode_8_4_12=g_navNode_8_4.addNode('95601','Benefits\x3a Employee Health Services',ssUrlPrefix + 'residents/instpolicyman/beneehs/home.html');
g_navNode_8_4_13=g_navNode_8_4.addNode('138803','Benefits\x3a Exercise Room at UMMC-F',ssUrlPrefix + 'residents/instpolicyman/benerfexerciseroom/home.html');
g_navNode_8_4_14=g_navNode_8_4.addNode('68973','Benefits\x3a FICA',ssUrlPrefix + 'residents/instpolicyman/benefica/home.html');
g_navNode_8_4_15=g_navNode_8_4.addNode('68975','Benefits\x3a Health Insurance',ssUrlPrefix + 'residents/instpolicyman/benehealthins/home.html');
g_navNode_8_4_16=g_navNode_8_4.addNode('68979','Benefits\x3a Insurance Coverage Changes',ssUrlPrefix + 'residents/instpolicyman/beneinscovchange/home.html');
g_navNode_8_4_17=g_navNode_8_4.addNode('174442','Benefits\x3a Leave\x3a Bereavement',ssUrlPrefix + 'residents/instpolicyman/benefbereavementleave/home.html');
g_navNode_8_4_18=g_navNode_8_4.addNode('174446','Benefits\x3a Leave\x3a Family Medical Leave Act \x28FMLA\x29',ssUrlPrefix + 'residents/instpolicyman/beneffmla/home.html');
g_navNode_8_4_19=g_navNode_8_4.addNode('174473','Benefits\x3a Leave\x3a Holidays',ssUrlPrefix + 'residents/instpolicyman/benefholidays/home.html');
g_navNode_8_4_20=g_navNode_8_4.addNode('174487','Benefits\x3a Leave\x3a Medical',ssUrlPrefix + 'residents/instpolicyman/benefmedicalleave/home.html');
g_navNode_8_4_21=g_navNode_8_4.addNode('174491','Benefits\x3a Leave\x3a Military',ssUrlPrefix + 'residents/instpolicyman/benefmilitaryleave/home.html');
g_navNode_8_4_22=g_navNode_8_4.addNode('174496','Benefits\x3a Leave\x3a Parental',ssUrlPrefix + 'residents/instpolicyman/benefparentalleave/home.html');
g_navNode_8_4_23=g_navNode_8_4.addNode('174536','Benefits\x3a Leave\x3a Personal',ssUrlPrefix + 'residents/instpolicyman/benefpersonalleave/home.html');
g_navNode_8_4_24=g_navNode_8_4.addNode('174538','Benefits\x3a Leave\x3a Professional',ssUrlPrefix + 'residents/instpolicyman/benefprofessionalleave/home.html');
g_navNode_8_4_25=g_navNode_8_4.addNode('174557','Benefits\x3a Leave\x3a Vacation and Sick',ssUrlPrefix + 'residents/instpolicyman/benefvacsickleave/home.html');
g_navNode_8_4_26=g_navNode_8_4.addNode('174560','Benefits\x3a Leave\x3a Witness and Jury Duty',ssUrlPrefix + 'residents/instpolicyman/benefwitnessjuryduty/home.html');
g_navNode_8_4_27=g_navNode_8_4.addNode('69000','Benefits\x3a Effect of LOA for Satisfying Completion of Program',ssUrlPrefix + 'residents/instpolicyman/benepoleffectloacompl/home.html');
g_navNode_8_4_28=g_navNode_8_4.addNode('68976','Benefits\x3a Life Insurance',ssUrlPrefix + 'residents/instpolicyman/benelifeins/home.html');
g_navNode_8_4_29=g_navNode_8_4.addNode('68990','Benefits\x3a Loan Deferment',ssUrlPrefix + 'residents/instpolicyman/beneloandefer/home.html');
g_navNode_8_4_30=g_navNode_8_4.addNode('68977','Benefits\x3a Long Term Disability',ssUrlPrefix + 'residents/instpolicyman/benelongtermdis/home.html');
g_navNode_8_4_31=g_navNode_8_4.addNode('138802','Benefits\x3a Minnesota Medical Association Membership',ssUrlPrefix + 'residents/instpolicyman/benemmamember/home.html');
g_navNode_8_4_32=g_navNode_8_4.addNode('190212','Benefits\x3a Minnesota Medical Foundation Emergency Loan Program',ssUrlPrefix + 'residents/instpolicyman/benemmfemloan/home.html');
g_navNode_8_4_33=g_navNode_8_4.addNode('68994','Benefits\x3a Pre-Tax Flexible Spending Accounts',ssUrlPrefix + 'residents/instpolicyman/benepretaxreimbs/home.html');
g_navNode_8_4_34=g_navNode_8_4.addNode('68996','Benefits\x3a Professional Liability Insurance',ssUrlPrefix + 'residents/instpolicyman/beneprofliabilins/home.html');
g_navNode_8_4_35=g_navNode_8_4.addNode('68978','Benefits\x3a Short Term Disability',ssUrlPrefix + 'residents/instpolicyman/beneshorttermdis/home.html');
g_navNode_8_4_36=g_navNode_8_4.addNode('69004','Benefits\x3a Stipends',ssUrlPrefix + 'residents/instpolicyman/benestipends/home.html');
g_navNode_8_4_37=g_navNode_8_4.addNode('69016','Benefits\x3a Veterans Certification for Educational Benefits',ssUrlPrefix + 'residents/instpolicyman/benevabenes/home.html');
g_navNode_8_4_38=g_navNode_8_4.addNode('138801','Benefits\x3a Voluntary Life Insurance',ssUrlPrefix + 'residents/instpolicyman/benevollife/home.html');
g_navNode_8_4_39=g_navNode_8_4.addNode('69010','Benefits\x3a Workers\' Compensation Benefits ',ssUrlPrefix + 'residents/instpolicyman/beneworkerscomp/home.html');
g_navNode_8_4_40=g_navNode_8_4.addNode('69023','Disciplinary/Grievance Procedures\x3a Conflict Resolution Process for Student Academic Complaints Policy',ssUrlPrefix + 'residents/instpolicyman/disciplregentsstudacagriev/home.html');
g_navNode_8_4_41=g_navNode_8_4.addNode('69020','Disciplinary/Grievance Procedures\x3a Discipline/Dismissal/Non-Renewal',ssUrlPrefix + 'residents/instpolicyman/discipldismissresfell/home.html');
g_navNode_8_4_42=g_navNode_8_4.addNode('69035','Disciplinary/Grievance Procedures\x3a Dispute Resolution Policy',ssUrlPrefix + 'residents/instpolicyman/disciplresdisputeresolpol/home.html');
g_navNode_8_4_43=g_navNode_8_4.addNode('69030','Disciplinary/Grievance Procedures\x3a Sexual Harassment \x26 Discrimination Reporting',ssUrlPrefix + 'residents/instpolicyman/disciplsexharrasdiscrimrep/home.html');
g_navNode_8_4_44=g_navNode_8_4.addNode('69031','Disciplinary/Grievance Procedures\x3a Sexual Assault Victim\'s Rights Policy',ssUrlPrefix + 'residents/instpolicyman/disciplsexassaultvictrights/home.html');
g_navNode_8_4_45=g_navNode_8_4.addNode('69026','Disciplinary/Grievance Procedures\x3a University Senate Sexual Harrassment Policy',ssUrlPrefix + 'residents/instpolicyman/disciplusenatesexharraspol/home.html');
g_navNode_8_4_46=g_navNode_8_4.addNode('69039','General Policies \x26 Procedures\x3a AHC Student Background Checks Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocedbackgroundcheck/home.html');
g_navNode_8_4_47=g_navNode_8_4.addNode('11661','General Policies \x26 Procedures\x3a Academic Incivility\x3a Resources for Dealing with Harassment',ssUrlPrefix + 'residents/instpolicyman/AcademicIncivilityResourcesforDealingwithHarassment/index.htm');
g_navNode_8_4_48=g_navNode_8_4.addNode('190238','General Policies \x26 Procedures\x3a Applicant Privacy Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocapplicpriv/home.html');
g_navNode_8_4_49=g_navNode_8_4.addNode('169299','General Policies \x26 Procedures\x3a Appointment Letter Policy and Procedure',ssUrlPrefix + 'residents/instpolicyman/genpolprocapptletter/home.html');
g_navNode_8_4_50=g_navNode_8_4.addNode('190225','General Policies \x26 Procedures\x3a Background Study Policy \x26 Procedure',ssUrlPrefix + 'residents/instpolicyman/genpolprocbackgrounpp/home.html');
g_navNode_8_4_51=g_navNode_8_4.addNode('69048','General Policies \x26 Procedures\x3a Blood-Borne Pathogen Diseases Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocbloodbornepath/home.html');
g_navNode_8_4_52=g_navNode_8_4.addNode('190246','General Policies \x26 Procedures\x3a Certificate of Completion Policy',ssUrlPrefix + 'residents/instpolicyman/genpolproccertofcompl/home.html');
g_navNode_8_4_53=g_navNode_8_4.addNode('69049','General Policies \x26 Procedures\x3a Classification and Appointment Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocclassifpol/home.html');
g_navNode_8_4_54=g_navNode_8_4.addNode('95623','General Policies \x26 Procedures\x3a Compact for Teaching and Learning',ssUrlPrefix + 'residents/instpolicyman/genpolproccompact/home.html');
g_navNode_8_4_55=g_navNode_8_4.addNode('138807','General Policies \x26 Procedures\x3a Disaster Planning Policy \x26 Procedure',ssUrlPrefix + 'residents/instpolicyman/genpolprocdisasterpol/home.html');
g_navNode_8_4_56=g_navNode_8_4.addNode('169098','General Policies \x26 Procedures\x3a Document Management Requirements',ssUrlPrefix + 'residents/instpolicyman/genpolprocrfdocreq/home.html');
g_navNode_8_4_57=g_navNode_8_4.addNode('153560','General Policies \x26 Procedures\x3a Document Retention Requirements for FICA Purposes',ssUrlPrefix + 'residents/instpolicyman/genpolprocdocretent/home.html');
g_navNode_8_4_58=g_navNode_8_4.addNode('69050','General Policies \x26 Procedures\x3a Dress Code Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocdresscode/home.html');
g_navNode_8_4_59=g_navNode_8_4.addNode('190511','General Policies \x26 Procedures\x3a Duty Hour Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocdutyhrpol/home.html');
g_navNode_8_4_60=g_navNode_8_4.addNode('69080','General Policies \x26 Procedures\x3a Duty Hours Prioritization of Call Rooms',ssUrlPrefix + 'residents/instpolicyman/genpolprocdhpriorcallroom/home.html');
g_navNode_8_4_61=g_navNode_8_4.addNode('69077','General Policies \x26 Procedures\x3a Duty Hours/On Call Schedules',ssUrlPrefix + 'residents/instpolicyman/genpolprocdutyhrsoncall/home.html');
g_navNode_8_4_62=g_navNode_8_4.addNode('169088','General Policies \x26 Procedures\x3a Effective Date for Stipends and Benefits',ssUrlPrefix + 'residents/instpolicyman/genpolproceffectdate/home.html');
g_navNode_8_4_63=g_navNode_8_4.addNode('69082','General Policies \x26 Procedures\x3a Eligibility and Selection of Residents/Fellows',ssUrlPrefix + 'residents/instpolicyman/genpolproceligibselec/home.html');
g_navNode_8_4_64=g_navNode_8_4.addNode('95625','General Policies \x26 Procedures\x3a Essential Capacities for Matriculation, Promotion \x26 Graduation for U of M GME Programs',ssUrlPrefix + 'residents/instpolicyman/genpolprocessencapa/home.html');
g_navNode_8_4_65=g_navNode_8_4.addNode('69083','General Policies \x26 Procedures\x3a Evaluation Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocevalpromo/home.html');
g_navNode_8_4_66=g_navNode_8_4.addNode('69094','General Policies \x26 Procedures\x3a Health Insurance Portability \x26 Accountability Act \x28HIPAA\x29',ssUrlPrefix + 'residents/instpolicyman/genpocprochipaa/home.html');
g_navNode_8_4_67=g_navNode_8_4.addNode('69097','General Policies \x26 Procedures\x3a Immunizations \x26 Vaccinations',ssUrlPrefix + 'residents/instpolicyman/genpolprocimmunizvac/home.html');
g_navNode_8_4_68=g_navNode_8_4.addNode('69099','General Policies \x26 Procedures\x3a Immunizations \x26 Vaccinations\x3a Hep B Declination Form',ssUrlPrefix + 'residents/instpolicyman/genpolprochepbdeclin/home.html');
g_navNode_8_4_69=g_navNode_8_4.addNode('69102','General Policies \x26 Procedures\x3a Impaired Resident/Fellow Policy and Procedure',ssUrlPrefix + 'residents/instpolicyman/genpolprocimpairedresfell/home.html');
g_navNode_8_4_70=g_navNode_8_4.addNode('69118','General Policies \x26 Procedures\x3a Licensure Policy',ssUrlPrefix + 'residents/instpolicyman/genpolproclicrespermit/home.html');
g_navNode_8_4_71=g_navNode_8_4.addNode('190259','General Policies \x26 Procedures\x3a Life Support Certification Policy',ssUrlPrefix + 'residents/instpolicyman/genpolproclifesupportcert/home.html');
g_navNode_8_4_72=g_navNode_8_4.addNode('69119','General Policies \x26 Procedures\x3a Moonlighting Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocmoonlighting/home.html');
g_navNode_8_4_73=g_navNode_8_4.addNode('190268','General Policies \x26 Procedures\x3a National Provider Identification \x28NPI\x29 Policy \x26 Procedure',ssUrlPrefix + 'residents/instpolicyman/genpolprocnpi/home.html');
g_navNode_8_4_74=g_navNode_8_4.addNode('138822','General Policies \x26 Procedures\x3a Nepotism Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocnepotism/home.html');
g_navNode_8_4_75=g_navNode_8_4.addNode('69128','General Policies \x26 Procedures\x3a Observer Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocobserver/home.html');
g_navNode_8_4_76=g_navNode_8_4.addNode('95627','General Policies \x26 Procedures\x3a Post Call Cab Voucher Policy',ssUrlPrefix + 'residents/instpolicyman/genpolproccabvouch/home.html');
g_navNode_8_4_77=g_navNode_8_4.addNode('69138','General Policies \x26 Procedures\x3a Program Oversight',ssUrlPrefix + 'residents/instpolicyman/genpolprocprogrameval/home.html');
g_navNode_8_4_78=g_navNode_8_4.addNode('138827','General Policies \x26 Procedures\x3a Registered Same Sex Domestic Partner Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocregdomespart/home.html');
g_navNode_8_4_79=g_navNode_8_4.addNode('69140','General Policies \x26 Procedures\x3a Release of Contact Information Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocreleaserescontactinfo/home.html');
g_navNode_8_4_80=g_navNode_8_4.addNode('159062','General Policies \x26 Procedures\x3a Residency Management Suite \x28RMS\x29 Updating and Approving Assignments and Hours in Duty Hour Module of RMS',ssUrlPrefix + 'residents/instpolicyman/genpolprocrms/home.html');
g_navNode_8_4_81=g_navNode_8_4.addNode('69131','General Policies \x26 Procedures\x3a Standing and Promotion Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocpromotionresfell/home.html');
g_navNode_8_4_82=g_navNode_8_4.addNode('69143','General Policies \x26 Procedures\x3a Restrictive Covenants',ssUrlPrefix + 'residents/instpolicyman/genpolprocrestriccov/home.html');
g_navNode_8_4_83=g_navNode_8_4.addNode('138832','General Policies \x26 Procedures\x3a Short Term Disability Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocshorttermdis/home.html');
g_navNode_8_4_84=g_navNode_8_4.addNode('69145','General Policies \x26 Procedures\x3a Stipend Level Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocstipendlevel/home.html');
g_navNode_8_4_85=g_navNode_8_4.addNode('190276','General Policies \x26 Procedures\x3a Stipend and Benefit Funding from External Organizations',ssUrlPrefix + 'residents/instpolicyman/genpolprocstipbenfundexternal/home.html');
g_navNode_8_4_86=g_navNode_8_4.addNode('69146','General Policies \x26 Procedures\x3a Supervision Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocsupervision/home.html');
g_navNode_8_4_87=g_navNode_8_4.addNode('69141','General Policies \x26 Procedures\x3a Training Program and/or Institution Closure or Reduction Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocresclosure/home.html');
g_navNode_8_4_88=g_navNode_8_4.addNode('138835','General Policies \x26 Procedures\x3a Transitional Year Policy',ssUrlPrefix + 'residents/instpolicyman/genpolproctransitionalyr/home.html');
g_navNode_8_4_89=g_navNode_8_4.addNode('95630','General Policies \x26 Procedures\x3a USMLE Step 3\x3a Institution Policy on Completion',ssUrlPrefix + 'residents/instpolicyman/genpolprocusmle/home.html');
g_navNode_8_4_90=g_navNode_8_4.addNode('138817','General Policies \x26 Procedures\x3a Vendor Policy',ssUrlPrefix + 'residents/instpolicyman/genpolprocgiftpol/home.html');
g_navNode_8_4_91=g_navNode_8_4.addNode('162342','General Policies \x26 Procedures\x3a Verification of Training and Summary for Credentialing',ssUrlPrefix + 'residents/instpolicyman/genpolprocverification/home.html');
g_navNode_8_4_92=g_navNode_8_4.addNode('69148','General Policies \x26 Procedures\x3a Without Salary Appointments',ssUrlPrefix + 'residents/instpolicyman/genpolprocw-osalaryappt/home.html');
g_navNode_8_4_93=g_navNode_8_4.addNode('190278','Institution Responsibilities\x3a ACGME Resident Survey',ssUrlPrefix + 'residents/instpolicyman/instrespacgmeressurv/home.html');
g_navNode_8_4_94=g_navNode_8_4.addNode('190283','Institution Responsibilities\x3a ACGME Site Visit Preparation Services',ssUrlPrefix + 'residents/instpolicyman/instrespacgmesitevisitprep/home.html');
g_navNode_8_4_95=g_navNode_8_4.addNode('190337','Institution Responsibilities\x3a Confirmation of Receipt of the Program Manual',ssUrlPrefix + 'residents/instpolicyman/instrespconfrecptprogman/home.html');
g_navNode_8_4_96=g_navNode_8_4.addNode('190356','Institution Responsibilities\x3a Duty Hour Oversight Policy and Procedure',ssUrlPrefix + 'residents/instpolicyman/instrespdhoversight/home.html');
g_navNode_8_4_97=g_navNode_8_4.addNode('190338','Institution Responsibilities\x3a Funding',ssUrlPrefix + 'residents/instpolicyman/instrespfunding/home.html');
g_navNode_8_4_98=g_navNode_8_4.addNode('190340','Institution Responsibilities\x3a GME Core Comptency Teaching Resources',ssUrlPrefix + 'residents/instpolicyman/instrespcorecurricwebv/home.html');
g_navNode_8_4_99=g_navNode_8_4.addNode('190343','Institution Responsibilities\x3a Graduate Medical Education Committee \x28GMEC\x29 Responsibilities',ssUrlPrefix + 'residents/instpolicyman/instrespgmecresp/home.html');
g_navNode_8_4_100=g_navNode_8_4.addNode('190355','Institution Responsibilities\x3a Graduate Medical Education Committee \x28GMEC\x29 Resident Leadership Council Responsibilities',ssUrlPrefix + 'residents/instpolicyman/instrespgmecresrep/home.html');
g_navNode_8_4_101=g_navNode_8_4.addNode('190292','Institution Responsibilities\x3a Institution Affiliation Agreements',ssUrlPrefix + 'residents/instpolicyman/instrespinstagreements/home.html');
g_navNode_8_4_102=g_navNode_8_4.addNode('190336','Institution Responsibilities\x3a Program Letters of Agreement',ssUrlPrefix + 'residents/instpolicyman/instresppla/home.html');
g_navNode_8_4_103=g_navNode_8_4.addNode('69117','Institution Responsibilities\x3a International Medical Graduate Visa Requirements',ssUrlPrefix + 'residents/instpolicyman/instrespimgpol/home.html');
g_navNode_8_4_104=g_navNode_8_4.addNode('190360','Institution Responsibilities\x3a Institution and Program Requirements',ssUrlPrefix + 'residents/instpolicyman/instrespinstprogreq/home.html');
g_navNode_8_4_105=g_navNode_8_4.addNode('190362','Institution Responsibilities\x3a Internal Review Process',ssUrlPrefix + 'residents/instpolicyman/instrespirprocess/home.html');
g_navNode_8_4_106=g_navNode_8_4.addNode('190368','Institution Responsibilities\x3a Orientation',ssUrlPrefix + 'residents/instpolicyman/instresprforientation/home.html');
g_navNode_8_4_107=g_navNode_8_4.addNode('190374','Institution Responsibilities\x3a New Training Program Approval Process',ssUrlPrefix + 'residents/instpolicyman/instrespnewtrainprogapprov/home.html');
g_navNode_8_4_108=g_navNode_8_4.addNode('190380','Institution Responsibilities\x3a Registration Policy',ssUrlPrefix + 'residents/instpolicyman/instrespregistration/home.html');
g_navNode_8_4_109=g_navNode_8_4.addNode('68184','Student Services\x3a AHC Portal Access',ssUrlPrefix + 'residents/instpolicyman/ssportal/home.html');
g_navNode_8_4_110=g_navNode_8_4.addNode('68172','Student Services\x3a Child Care',ssUrlPrefix + 'residents/instpolicyman/sschildcare/home.html');
g_navNode_8_4_111=g_navNode_8_4.addNode('68213','Student Services\x3a Computer Discount/University Bookstore',ssUrlPrefix + 'residents/instpolicyman/sscompdisc/home.html');
g_navNode_8_4_112=g_navNode_8_4.addNode('68216','Student Services\x3a Credit Unions',ssUrlPrefix + 'residents/instpolicyman/sscreditunion/home.html');
g_navNode_8_4_113=g_navNode_8_4.addNode('68220','Student Services\x3a Disability Accommodations',ssUrlPrefix + 'residents/instpolicyman/ssdisabilaccom/home.html');
g_navNode_8_4_114=g_navNode_8_4.addNode('11587','Student Services\x3a Expression Connection - for mothers returning to work and school',ssUrlPrefix + 'residents/instpolicyman/StudentServicesExpressionConnection-formothersreturningtoworkandschool/home.html','contributorOnly==false');
g_navNode_8_4_115=g_navNode_8_4.addNode('68224','Student Services\x3a Legal Services',ssUrlPrefix + 'residents/instpolicyman/sslegalservices/home.html');
g_navNode_8_4_116=g_navNode_8_4.addNode('68227','Student Services\x3a Library Services',ssUrlPrefix + 'residents/instpolicyman/sslibraryservice/home.html');
g_navNode_8_4_117=g_navNode_8_4.addNode('68231','Student Services\x3a Medical School Campus Maps',ssUrlPrefix + 'residents/instpolicyman/ssmaps/home.html');
g_navNode_8_4_118=g_navNode_8_4.addNode('68236','Student Services\x3a Resident Assistance Program',ssUrlPrefix + 'residents/instpolicyman/ssrap/home.html');
g_navNode_8_4_119=g_navNode_8_4.addNode('68246','Student Services\x3a Tuition Reciprocity',ssUrlPrefix + 'residents/instpolicyman/sstuitionrecip/home.html');
g_navNode_8_4_120=g_navNode_8_4.addNode('68252','Student Services\x3a U Card',ssUrlPrefix + 'residents/instpolicyman/ssucard/home.html');
g_navNode_8_4_121=g_navNode_8_4.addNode('68255','Student Services\x3a University Events Box Office',ssUrlPrefix + 'residents/instpolicyman/ssevents/home.html');
g_navNode_8_4_122=g_navNode_8_4.addNode('68254','Student Services\x3a University Recreation Sports Centers',ssUrlPrefix + 'residents/instpolicyman/ssreccenter/home.html');
g_navNode_8_5=g_navNode_8.addNode('47690','Needle Sticks and Blood Borne Pathogen Exposure \x28BBPE\x29 Management',ssUrlPrefix + 'residents/needle/home.html');
g_navNode_8_6=g_navNode_8.addNode('47689','Orientation\x3a Incoming Resident and Fellow Requirements',ssUrlPrefix + 'residents/orientation/home.html');
g_navNode_8_7=g_navNode_8.addNode('47691','Resident Assistance Program \x28RAP\x29',ssUrlPrefix + 'residents/rap/home.html');
g_navNode_8_8=g_navNode_8.addNode('9745','Resident Leadership Council of the Graduate Medical Education Committee \x28GMEC\x29',ssUrlPrefix + 'residents/gmecrescouncil/home.html','contributorOnly==false');
g_navNode_8_9=g_navNode_8.addNode('210097','Resident Educator Development \x28RED\x29',ssUrlPrefix + 'residents/reseducdevel/home.html');
g_navNode_8_10=g_navNode_8.addNode('206941','Stipend Information\x3a Base Rates and Policies',ssUrlPrefix + 'residents/stipendinfo/home.html');
g_navNode_8_11=g_navNode_8.addNode('189068','Well-Being Tools',ssUrlPrefix + 'residents/wellness/home.html');
g_navNode_9=g_navNode_Root.addNode('47127','Training Sites - Main',ssUrlPrefix + 'training_sites/home.html','ShowWhatsInside==true');
g_navNode_9_0=g_navNode_9.addNode('47678','Affiliate Hospitals',ssUrlPrefix + 'training_sites/affiliate/home.html');
g_navNode_10=g_navNode_Root.addNode('13582','Verification of Training',ssUrlPrefix + 'VerificationofTraining/home.html');
g_navNode_11=g_navNode_Root.addNode('108232','Visiting Residents \x26 Fellows',ssUrlPrefix + 'visresfellowinfo/home.html');
if (SSContributor)
{
g_navNode_13=g_navNode_Root.addNode('5916','SSManager',ssUrlPrefix + 'ssmanager/index.htm','contributorOnly==TRUE');
}
