// JavaScript Document

//-- This routine allows us to put a different css file for each of the "bio_" pages.
	
mixy = parent.location.href.split("/"); //-- find the page url
whichCSS = mixy[mixy.length -1]; //-- grab the name of the parent file
switch (whichCSS)  //-- select the type of team member
{
case "team_members.asp":
  document.write("<link href='css/biosnew.css' rel='stylesheet' type='text/css' />")
  break;
case "team_mentors.asp":
  document.write("<link href='css/biosnew.css' rel='stylesheet' type='text/css' />")
  break;
case "team_robots.asp":
  document.write("<link href='css/biosnew.css' rel='stylesheet' type='text/css' />")
  break;
}
