function fSendVote() {
	iFieldValue = $("[@name='oPoll']").fieldValue();
	if ($("#iPollId").length==0)
		return false;
	iPollId = $("#iPollId").fieldValue();
	if (iFieldValue!='') {
		$.ajax({
			type: "POST",
			url: "polls.html",
			data: 'sAction=vote&bXml=1&iPollId='+iPollId+'&iAnswerId='+iFieldValue,
			dataType: 'xml',
			success: function(oXml){
					iStatus = $(oXml).find('iStatus').text();
					if (iStatus==1) {
						$('.pojPollChange').html($(oXml).find('Content').text());
						setDocumentHeight();
					}
					else {
						console.log('not good');
					}
				},
			error: function() {
			}
		});
	}
}