
submitVote = function(element, pollURL) {
	popupPollResultWindow(pollURL);
	element.form.submit();
	return false;
}

popupPollResultWindow = function(url) {
	var win = window.open(url, 'pollResultWindow','resizable=yes,width=480,height=400');
	if (url == '') {
		win.document.write('<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">');
		win.document.write('<html xmlns="http://www.w3.org/1999/xhtml" lang="fi" xml:lang="fi">');
		win.document.write('<head>');
		win.document.write('<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />');
		win.document.write('</head>');
		win.document.write('<body>Loading..</body></html>');
	}
	if (win) {
		win.focus();
	}
	
	return false;
}

