switch($team){
case "florida":
include("florida.html");
break;
case "gwu":
include("gwu.html");
break;
case "georgia":
include("georgia.html");
break;
case "iowa":
include("iowa.html");
break;
case "maryland":
include("maryland.html");
break;
case "nc":
include("carolina.html");
break;
case "all":
include("all.html");
break;
default:
include("team.html");
}
?>