function SubmitPoll( id, nChoices /*,width, height, bUpdate */) {
	var choiceValue;
	
	choiceValue = "";
	for( i = 0; i < nChoices; i++ ) {
	    if( document.poll_form.choice[i].checked ) {
	        choiceValue = document.poll_form.choice[i].value;
			break;
	    }
	}
	window.open("/polls/poll.php?id=" + id + "&choice=" + choiceValue, "pollwindow", "width=400,height=300,toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,copyhistory=yes,resizable=yes");
	
}
