function goToTeachers()
{
    if (window.ActiveXObject)
    {
        window.open("#" + document.getElementById("teachers").value,"_self");
    }
    else if (document.implementation 
    && document.implementation.createDocument)
    {
        document.getElementById("leadersBottom").focus();
        document.getElementById(document.getElementById("teachers").value).focus();
        document.getElementById(document.getElementById("teachers").value).blur();
    }
}

function goToTop()
{
    if (window.ActiveXObject)
    {
        window.open("#leadersTop2","_self");
    }
    else if (document.implementation 
    && document.implementation.createDocument)
    {
        document.getElementById("leadersTop1").focus();
        document.getElementById("leadersTop2").focus();
        document.getElementById("leadersTop2").blur();
    }
}
