﻿// JScript File
function starOn(img, n) {
    img.style.cursor = 'pointer';

    for(i = 1; i <= n; i++) {
        document.getElementById("imgC" + i).style.display = 'none';
        document.getElementById("imgA" + i).style.display = '';
    }
    
    for(i = i; i <= 5; i++) {
        document.getElementById("imgC" + i).style.display = '';
        document.getElementById("imgA" + i).style.display = 'none';
    }
}

function starClick(id,n) {
    doRequest('/server.aspx?act=gravarVideo_estrela&idvideo=' + id + '&nota=' + n,function(){});
    alert('Seu voto foi registrado com sucesso.');
}
