function SubmitVote(sform)
{
	open('', sform.name, 'scrollbars=yes,resizeable=no,locationbar=no,width=250,height=400,left='.concat((screen.width - 250)/2).concat(',top=').concat((screen.height - 400)/2));
	
	sform.action = 'services/srv_poll.asp';
	sform.submit();
}