function getCookie() {
    name = uid;
    var dc = document.cookie;
    var prefix = name + "=";
    var begin = dc.indexOf("; " + prefix);
    if (begin == -1) {
        begin = dc.indexOf(prefix);
        if (begin != 0) return null;
        }
    else
        begin += 2;
    var end = document.cookie.indexOf(";", begin);
    if (end == -1)
        end = dc.length;
    return unescape(dc.substring(begin + prefix.length, end));
}

function abre_pop_resultado(myform) {
    me = document.results;
    votacao = '';
    radios_obj = me['answer'];
    for (i=0; i < radios_obj.length; i++) {
        if (radios_obj[i].checked==true) {
            votacao = radios_obj[i].value;
        }
    }
    if (votacao == '') {
        alert('Escolha uma das alternativas');
        return false;
    }
    else {
        window.open(url_enquete + '/mpoll_vote_idg','pop_1','status=no,width=490,height=410,resizable=yes,scrollbars=no');
        myform.target='pop_1';
        return true;
    }
}

function abre_pop(){
    window.open(url_enquete + '/mpollNoTemplate_view?votado=1', 'pop_1','status=no,width=490,height=410,resizable=yes,scrollbars=no');
    }
