var xmlhttp_obj;


function vote(poll)
{
xmlhttp_obj=GetXmlHttpObject();
if (xmlhttp_obj==null)
  {
  alert ("Browser does not support HTTP Request");
  return;
  }
  
if( document.getElementById('1').checked == true){ var poll_item = 1}
if( document.getElementById('2').checked == true){ var poll_item = 2}
if( document.getElementById('3').checked == true){ var poll_item = 3}
if( document.getElementById('4').checked == true){ var poll_item = 4}
if( document.getElementById('5').checked == true){ var poll_item = 5}

var url="http://www.dailyprem.com/wp-content/themes/nationalgame/poll_vote.php?poll="+poll+"&poll_item="+poll_item;
xmlhttp_obj.onreadystatechange=stateChanged;
xmlhttp_obj.open("GET",url,true);
xmlhttp_obj.send(null);
}




function stateChanged()
	{
	if (xmlhttp_obj.readyState==4)
	{
	document.getElementById("poll").innerHTML=xmlhttp_obj.responseText;
	}
}

function GetXmlHttpObject()
{
if (window.XMLHttpRequest)
  {
  // code for IE7+, Firefox, Chrome, Opera, Safari
  return new XMLHttpRequest();
  }
if (window.ActiveXObject)
  {
  // code for IE6, IE5
  return new ActiveXObject("Microsoft.XMLHTTP");
  }
return null;
}
