function ShowVotingResult()
{	$.ajax({
				  url: '/voting.html',
				  type: 'POST',
				  success: function(d) {
				     	$("#voting").html("<div align='left' style='padding:10px 20px;'>"+d+"</div>");
				  }
	});}

$(document).ready(function(){	$("#vote").bind("click",function(){		var answ=$("input:radio[name=answer]:checked").val();
		if(answ===undefined)
			alert('Для голосования необходимо выбрать один вариант ответа.');
		else
		{            $.ajax({
				  url: '/voting.html',
				  type: 'POST',
				  data: 'act=vote&v='+answ,
				  success: function(d) {
				     if(d=="ok")
				     	$("#voting").html("<div align='center' style='padding:10px 20px;'><b>Ваш голос учтен. Спасибо.</b><br><br><a href='javascript: ShowVotingResult();'>Посмотреть результаты</a></div>");
				     else
				     	$("#voting").html("<div align='center' style='padding:10px 20px;'><b>Вы уже голосовали, голос не защитан!</b><br><br><a href='javascript: ShowVotingResult();'>Посмотреть результаты</a></div>");
				  }
			});		}	});

	$("#voteres").bind("click",function(){		ShowVotingResult();	});});

