function ShowPollVotes(formName)
{
	if (document.getElementById(formName + "_PollOptionsList").value == "") return;
	var	doc										= window.frames[formName + "_RunInBackground"].document;
	doc.getElementById("Action").value			= "ShowPollVotes";
	doc.getElementById("PollID").value			= document.getElementById(formName + "_PollID").value;
	doc.getElementById("PollOptionsList").value	= document.getElementById(formName + "_PollOptionsList").value;
	doc.forms[0].submit();
}

function ShowContent(formName)
{
	if (document.getElementById(formName + "_PollContent") != null)
		parent.document.getElementById(formName + "_PollContent").innerHTML	= document.getElementById(formName + "_PollContent").innerHTML;
}

function CheckAddPollOptions()
{
	return true;
}

function CheckAddPoll()
{
	return true;
}
