poll = {};

poll.toggleOther = function(poll_id,option_id)
{
	if(option_id == 0)
	{
		document.getElementById('other_' + poll_id + '_div').style.display = 'block';
		document.getElementById('other_' + poll_id + '_0').focus();
	}
	else
	{
		document.getElementById('other_' + poll_id + '_div').style.display = 'none'
	}
};