
//this function makes the link team active when choosing teammembers: 
function teamCol(which)
{
obj0 = document.getElementById("team")
if (which == "team") {
obj0.className = "red"
}
if (which == "other") {
obj0.className = "pants"
}
}
