﻿var VotexmlHttp;
function GetVote()
	{
		var url = "../../AjaxPostBack.aspx?Action=Vote&ID="+VoteID;
		VotexmlHttp = GetXmlHttp();
		VotexmlHttp.onreadystatechange = GetVoteReadyStateChange;
		VotexmlHttp.open("GET", url, true);
		VotexmlHttp.send("");
	}
	function GetVoteReadyStateChange()
	{
		if(VotexmlHttp.readyState == 4)
		{
            document.getElementById("vote").innerHTML = VotexmlHttp.responseText ;
		}
		else
		{
            innerHTML="<img src=/Images/Ajax_Loading.gif width=32 height=32 />";
		}
	}	
