/*	Places the data within the specified tag id for the poll.
	@param	jsonData JSON	Containing:  data and elementId
*/
function getL2DPollData(jsonData){
	document.getElementById(jsonData.elementId).innerHTML = jsonData.data;
}