function voteYes(match){
	var url = 'tob-poll.php?pollid=' + match + '&vote=agreed';
	loadXMLDoc(url);
}


function voteNo(match){
	var url = 'tob-poll.php?pollid=' + match + '&vote=disagreed';
	loadXMLDoc(url);
}