﻿// JScript File
function overMenu(id)
{
    var elem = document.getElementById(id);
    if (elem && elem.style) 
        elem.style.border = "3px solid black";
}

function popupNotasAluno(id,aluno) 
{ 
        var l = Math.floor( (screen.width - 585) / 2);
        var t = Math.floor( (screen.height - 600) / 2);
        window.open('verdetalheavaliacao.aspx?id='+id+'&aluno='+aluno,'Notas','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=485,height=600,top='+t+',left='+l+'');
}
