var pollShown = false;
function clickPoll(ppart) {
	if (pollShown) {
		pollShown = false;
		ppart.className = 'light header pointer-cursor';
		hide('daspoll','oll');
		ppart.style.width = 'auto';
	} else {
		pollShown = true;
		ppart.className = 'header pointer-cursor';
		unhide('daspoll','oll');
		ppart.style.width = '100%';
	}
			
}

