function voteCheck(){
	var i = document.getElementById("voteForm").getElementsByTagName("input");

	var ccount=0;
	
	for(var m=0;m<i.length;m++){
		if (i[m].type == "checkbox" || i[m].type == "radio"){		
			if(i[m].checked){
				ccount=ccount+1;
			}
		}
	}
	if(ccount<1){
		alert("您没有选择选项！");
		return false;
	}
}
