There are currently 0 users and
0 guests online.

What do you think about us?
  •  Super
  •  Good
  •  Normal
  •  Bad
"; if (action == "viewPoll") { pollsDiv.html(loadingHTML); url = "/templateContent/true/infobox/site_polls/template/poll/action/" + action + "/pollId/" + pollId; } if (action == "votePoll") { var form = document.getElementById("sitePollForm_" + pollId); var questionId = getCheckedValue(form['question']); if (questionId == "") { alert("Please select your answer to vote"); return false; } pollsDiv.html(loadingHTML); url = "/templateContent/true/infobox/site_polls/template/vote/action/" + action + "/pollId/" + pollId + "/questionId/" + questionId; } if (action == "viewResults") { pollsDiv.html(loadingHTML); url = "/templateContent/true/infobox/site_polls/template/result/action/" + action + "/pollId/" + pollId; } if (url) pollsDiv.load(url); return false; }