//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/careers/our_culture/our culture.aspx' target='_self'>Careers</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<a href='http://www.profmax.com/pbs/careers/our_culture/our culture.aspx' target='_self'>Our Culture</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<a href='http://www.profmax.com/pbs/careers/our_team/our team.aspx' target='_self'>Our Team</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<a href='http://www.profmax.com/pbs/careers/work_with_us/work with us.aspx' target='_self'>Work With us</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<a href='http://www.profmax.com/pbs/careers/internship_program/internship program.aspx' target='_self'>Internship Program</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<a href='http://www.profmax.com/pbs/careers/job_openings/job openings.aspx' target='_self'>Job Openings</a>";
				txt+="</div>";
			txt+="</div>";
			txt+="<div class='lnmid'>";
				txt+="<div class='chevron2'>";
					txt+="<a href='http://www.profmax.com/pbs/careers/test_your_skills/test your skills.aspx' target='_self'>Test Your Skills</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.");
    }  
}