function openVoteWin(voteId){
	width=200;
	height=50;
	p = 'poll2.php?action=vote&voteId='+voteId;
	window.location.href = p;
}
function openResultWin(){
	width=390;
	height=220;
	p = 'poll2.php?action=viewresults';
	myWin = window.location.href(p);
}
