﻿function popUp(url, window, width, height)
{
    open(url,window, "menubar=no,width="+width+",height="+height+",toolbar=no");
}


function toggleElement(id) {
    $(".team-list-bio").hide();
    $("#" + id).show();
}

function toggleClassElement(id) {
    $("." + id).toggle();
}
