﻿function doOpenPoll(action, pID, rdAnswers) {
    var cID = 0;
    if (rdAnswers) {
        var arr = document.getElementsByName(rdAnswers);
        var choice = 0;
        for (x = 0; x < arr.length; x++) {
            if (arr[x].checked == true) {
                cID = choice = arr[x].value;
                break;
            }
        }
        if (choice == 0) {
            alert("من فضلك اختر إجابة");
            return;
        }
    }
    var url = 'pollresult.aspx?' + action + '=true&pollid=' + pID + '&choiceid=' + cID;    
    window.open(url, "_blank", "height=530,width=560,status=no,toolbar=no,menubar=no,location=no, resizable=yes, scrollbars=true");
}
