function submitPoll(id)
{
	var selected = '';
	var width = (window.screen.width - 270) / 2;
	var height = (window.screen.height / 2)  - 190;
	for(var i=1; i<=3; i++)
	{
		if(document.getElementById('option-' + i).checked)
		{
			selected = document.getElementById('option-' + i).value 
			document.getElementById('option-' + i).checked = false;
		}
	}
	selected ? window.open('/poll.php?id=' + id + '&vote=' + selected, 'popup', 'location=0,status=0,scrollbars=0,width=270,height=190,top=' + height + ',left=' + width).focus() : alert('Please select a option first');
}

function archive()
{
	window.location = '/' + document.getElementById('year').value + '/' + document.getElementById('month').value + '/' + document.getElementById('day').value + '/';
}