	function validatePoll(theName){
		var radio_choice = false;
		for (counter = 0; counter < theName.option.length; counter++){
			if (theName.option[counter].checked) radio_choice = true; 
		}
		if (!radio_choice){
			alert("Pilih salah satu");
			return (false);
		}
		return (true);
	}