
function gotoSchool(school, type, position) {
        var newWindow = window.open("","school","");
        newWindow.focus();
        document.school.target = "school";
        document.school.school.value = school;
        document.school.type.value = type;
        document.school.position.value = position;
        document.school.submit();
}

