/* 在线抽查投票 */
function doVote()
{
	if (checkvalidate())
	{
		window.open("","voteWin","scrollbars=yes,status=no,menubar=no,location=no,toolbar=no,width=360,height=200");
		document.voteForm.submit();
	}
}

/* 投票提交前验证 */
function checkvalidate()
{
	var radios = document.all.item("check_id");
	for(var i=0;i<radios.length;i++)
	{
		if(radios[i].checked==true)
			return true;
	}  
	alert("投票选项不能为空!");
	
	return false;
}

/* 显示投票结果 */
function showvote(){
	var nl = vote.getElementsByTagName("TR");
	for(i=0;i<nl.length;i++)
	{
		if (nl.item(i).style.display=="none")
			nl.item(i).style.display="block";
	}
}