function submitPoll(num) {
	ch = 0;
	for(var i=0; i<num; i++) {
		if(document.poll_form.poll_option[i].checked) {
			ch = document.poll_form.poll_option[i].value;
			break;
		}
	}
	if(ch>0) {
		getPageAjax('p=0&page=umfrage.box&option='+ch, 'poll_content');
		return true;
	}
	else {
		alert("Bitte wähle eine Antwort aus!");
		return false;
	}
}
