function sbtPoll(objForm)
{
	if ($("input:checked").length > 0)
	{
		objForm.submit();
	}
	else
	{
		var txt = '<img src="'+DIR_WS_IMAGES+'icons/Help.png" width="64" height="64" border="0" alt="" align="absmiddle"> Please select an option to vote.';
		alertBox(txt, false);
	}
}