﻿function openpage_noresize(pageurl, pagename, pagewidth, pageheight) {
    var attr;
    attr = "width=" + pagewidth + ",height=" + pageheight + ",scrollbars=no,status=no,title=yes,toolbars=no,resizable=no"
    window.open(pageurl, pagename, attr);
}
function submitVote(sform, intVote_id, intShowResult, intMultiChoice) {

    window.document.formWebsite.VoteItem.value = '';
    for (i = 0; i < window.document.formWebsite.elements.length - 1; i++) {        
        if (window.document.formWebsite.elements[i].checked)
            window.document.formWebsite.VoteItem.value = window.document.formWebsite.VoteItem.value + ',' + window.document.formWebsite.elements[i].value;
    }
    openpage_noresize('../vi-vn/vote.aspx?vote_id=' + intVote_id + '&action=1' + '&itemlist=' + window.document.formWebsite.VoteItem.value + '&mulcho=' + intMultiChoice, 'itemvote', '520', '310');

}

function Paging(K, P) {
    window.location = "../vi-vn/vsattp.aspx?K=" + K + "&P=" + P;
}

function PagingDN(D, P) {
    window.location = "../vi-vn/vsattp.aspx?D=" + D + "&P=" + P;
}



