﻿var radiocount = 0;

function votecount()
{
	radiocount ++;
}

function checkvote()
{
	if (radiocount==0)
		{
			alert('請選擇投票結果');
			return false;
		}
}
