//function MM_openBrWindow(theURL,winName,features) { //v2.0
  //	window.open(theURL,winName,features);
//}
function treeinit() {
  if(parseInt(navigator.appVersion) < 4) {
    alert("Sorry, a 4.0+ browser is required to view this demo.");
    return;
  }
  var width=175, height = 22;
  var bgColor = "#ffdddd";
  l = new List(true, width, height, bgColor);
  l.setFont("<FONT FACE='Arial,Helvetica' COLOR='#660000' SIZE=-1'><B>","</B></FONT>");
    m = new List(true, width, height, bgColor);
    m.setFont("<FONT FACE='Arial,Helvetica' SIZE=-1'>","</FONT>");
    m.addItem("<a href='/home/foundationcoalition/vision.htm'>Vision</a>");
    m.addItem("<a href='/home/foundationcoalition/mission.htm'>Mission</a>");
    m.addItem("<a href='/home/foundationcoalition/corevalues.htm'>Core Values</a>");
    m.addItem("<a href='/home/foundationcoalition/corecompetencies.htm'>Core Competencies</a>");
    m.addItem("<a href='/home/foundationcoalition/strategicobjectives.htm'>Strategic Objectives</a>");
  l.addList(m, "Foundation Coalition");
    o = new List(true, width, height, bgColor);
    o.setFont("<FONT FACE='Arial,Helvetica' COLOR='#660000' SIZE=-1'>","</FONT>");
    o.addItem("<a href='/home/projectdirector/directorsmessage.htm'>Director's Message</a>");
    o.addItem("<a href='/home/projectdirector/directorsvideo.htm'>Director's Video</a>");
    o.addItem("<a href='mailto:froyd@ee.tamu.edu'>Contact Information</a>");
  l.addList(o, "Project Director");
    t = new List(true, width, height, bgColor);
    t.setFont("<FONT FACE='Arial,Helvetica' COLOR='#660000' SIZE=-1'>","</FONT>");
    //t.addItem("<a href='/home/governingboard/index.htm'>Board Description</a>");
    //t.addItem("<a href='/home/governingboard/index.htm'>Members</a>");
  l.addList(t, "<a href='/home/governingboard/index.htm'>Governing Board</a>");
    s = new List(true, width, height, bgColor);
    s.setFont("<FONT FACE='Arial,Helvetica' COLOR='#660000' SIZE=-1'>","</FONT>");
	s.addItem("<a href='/home/keycomponents/collaborative_learning.htm'>Act/Coop Learning</a>");
	s.addItem("<a href='/home/keycomponents/student_teams.htm'>Student Teams</a>");
	s.addItem("<a href='/home/keycomponents/minorities.htm'>Women & Minorities</a>");
	s.addItem("<a href='/home/keycomponents/technology_enabled.htm'>Tech Enabled Learning</a>");
    s.addItem("<a href='/home/keycomponents/curriculum_integration.htm'>Curriculum Integration</a>");
    s.addItem("<a href='/home/keycomponents/assessment_evaluation.htm'>Assessment & Eval</a>");
    s.addItem("<a href='/home/keycomponents/inclusive_learning.htm'>Learning Communities</a>");
    s.addItem("<a href='/home/keycomponents/managing_change.html'>Managing Change</a>");
  l.addList(s, "Key Components");
    q = new List(true, width, height, bgColor);
    q.setFont("<FONT FACE='Arial,Helvetica' COLOR='#660000' SIZE=-1'>","</FONT>");
    q.addItem("<a href='http://www.eas.asu.edu'>Arizona State Univ</a>");
	//q.addItem("<a href="#" onClick="MM_openBrWindow('http://www.eas.asu.edu', '','menubar=yes,scrollbars=yes,resizable=yes,width=650,height=550')">Arizona State</a>");
	q.addItem("<a href='http://coalition.tamu.edu'>Texas A&M Univ</a>");
	q.addItem("<a href='http://foundation.ua.edu/alabama/'>Univ of Alabama</a>");
	q.addItem("<a href='http://www.umassd.edu/fc/'>Univ of Massachusetts</a>");
	q.addItem("<a href='http://foundation-coalition.tamu.edu/home/fcinstitutions/wisconsin_new.htm'>Univ of Wisconsin</a>");
	q.addItem("<a href='http://fc.rose-hulman.edu'>Rose Hulman Inst</a>");
	
  l.addList(q, "FC Institutions");
  l.build(10,160);
}

