//AspNet-TreeView

function fill_AspNetTreeView_div_for_left_nav_through_js(){
    try
    { 
        var Target = document.getElementById('AspNet-TreeView');
        if (Target != null){                
			var txt="";				
			txt+="<div class='lntopon'>";
				txt+="<div class='chevron4'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/overview/what_we_do/what we do.aspx' target='_self'>About Us</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<div id='Overview' class='AspNet-TreeView-Expand' onclick='ExpandCollapse__AspNetTreeView(this)'>&nbsp;</div>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/overview/what_we_do/what we do.aspx' target='_self'>Overview</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnlist' id='Overviewlnlist' style='display:none'>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/overview/what_we_do/what we do.aspx' target='_self'>What we do</a>";
				txt+="</div>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/overview/who_we_are/who we are.aspx' target='_self'>Who we are</a>";
				txt+="</div>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/overview/vision/vision.aspx' target='_self'>Vision</a>";
				txt+="</div>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/overview/mission/mission.aspx' target='_self'>Mission</a>";
				txt+="</div>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/overview/quality/quality.aspx' target='_self'>Quality</a>";
				txt+="</div>";
			txt+="</div>";

			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<div id='Mangement' class='AspNet-TreeView-Expand' onclick='ExpandCollapse__AspNetTreeView(this)'>&nbsp;</div>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/management/management_team/management team.aspx' target='_self'>Mangement</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnlist' id='Mangementlnlist' style='display:none'>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/management/management_team/management team.aspx' target='_self'>Management Team</a>";
				txt+="</div>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/management/board_members/board members.aspx' target='_self'>Board members</a>";
				txt+="</div>";
			txt+="</div>";	


			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<div id='Partners' class='AspNet-TreeView-Expand' onclick='ExpandCollapse__AspNetTreeView(this)'>&nbsp;</div>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/partners/profmax_alliances/profmax alliances.aspx' target='_self'>Partners</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnlist' id='Partnerslnlist' style='display:none'>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/partners/profmax_alliances/profmax alliances.aspx' target='_self'>Profmax Alliances</a>";
				txt+="</div>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/partners/partner_with_us/partner with us.aspx' target='_self'>Partner with Us</a>";
				txt+="</div>";
			txt+="</div>";	

			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<div id='Clients' class='AspNet-TreeView-Expand' onclick='ExpandCollapse__AspNetTreeView(this)'>&nbsp;</div>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/clients/case_studies/case studies.aspx' target='_self'>Clients</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnlist' id='Clientslnlist' style='display:none'>";
				txt+="<div class='bullet'>";
			        	txt+="<a href='http://www.profmax.com/pbs/about_us/clients/overview/clients overview.aspx' target='_self'>Overview</a>";
				txt+="</div>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/clients/case_studies/case studies.aspx' target='_self'>Case Studies</a>";
				txt+="</div>";
				txt+="<div class='bullet'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/clients/testimonials/testimonials.aspx' target='_self'>Testimonials</a>";
				txt+="</div>";
			txt+="</div>";			

			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/events/events.aspx' target='_self'>Events</a>";
				txt+="</div>";
			txt+="</div>";

			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<a href='http://www.profmax.com/pbs/about_us/media_journalist/media journalist.aspx' target='_self'>Media/ Journalist</a>";
				txt+="</div>";
			txt+="</div>";
			
            document.getElementById('AspNet-TreeView').innerHTML=txt ;
        }
        else
        {
            alert("unable to load web page.");
        }
    }    
    catch(er)
    {
        alert("unable to load web page.");
    }  
}