/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function doPollDialog(pollID, pollChoice) {
var container						= document.getElementById('PollDiv');
	if (container) {	
	container.innerHTML				= '<div style="width: 274px; height: 180px; border: 2px solid gray; margin-left:5px; margin-top: 10px; overflow:hidden;"><div style="margin-left:auto;margin-right:auto;margin-top:80px;width:32px;height:32px;"><img src="/images/loadAnim7.gif" width="32" height="32" alt="" /></div></div>';
	}
handlePostComplete					= 'handlePollPostComplete';
var params							= "section=PollDialog&DOPOLL=1&POLLID="+pollID+"&POLLCHOICE="+pollChoice;
postAjaxContent('/clientServer/',params);
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
function handlePollPostComplete(success,xmlHTTP) {
var container						= document.getElementById('PollDiv');
	if (container) {	
	container.innerHTML				= xmlHTTP.responseText;
	}
}