function poll_results(action,theURL,pollId) {

/*
w = window.open('about:blank');
w.document.open();
w.document.write(document.getElementById('divPoll').innerHTML);
w.document.close();
*/

    var poll_ident = self.document.Form_eCPoll.poll_ident.value;

    option_id = '';
    for (i=0; i<self.document.Form_eCPoll.option_id.length; i++) {
        if(self.document.Form_eCPoll.option_id[i].checked == true) {
            option_id = self.document.Form_eCPoll.option_id[i].value;
            break;
        }
    }
    option_id = (option_id != '') ? '&option_id='+option_id : '';
    if (action=='results' || (option_id != '' && action=='vote')) {
        theURL = theURL+'?action='+action+'&poll_ident='+pollId+option_id;
        ajax_loadContent('divPoll',theURL);
    }
	return false;
}
