function InitXmlHttp(){try{xmlhttp=new ActiveXObject("Msxml2.XMLHTTP")}catch(e){try{xmlhttp=new ActiveXObject("Microsoft.XMLHTTP")}catch(E){xmlhttp=false}}if(!xmlhttp&&typeof XMLHttpRequest!='undefined'){xmlhttp=new XMLHttpRequest()}xmlhttp.onreadystatechange=XMLHttpRequestCompleted}function InvokeAshx(root){InitXmlHttp();xmlhttp.onreadystatechange=XMLHttpRequestCompleted;var pollId="pollId="+document.getElementById('pollId').value;var radios=document.getElementsByName('itemid');var itemid="";for(var i=0;i<radios.length;i++){if(radios[i].checked){itemid=radios[i].value}}url=root+"/PollHandler.ashx?"+pollId;url+="&itemid="+itemid;if(root=="http://dev-nutricia-indonesia-en"){document.getElementById('panelPollProcess').innerHTML="<p>Sending your vote</p><br/>"}else if(root=="http://dev-nutricia-indonesia-in"){document.getElementById('panelPollProcess').innerHTML="<p>Kirim pilihan And</p><br/>"}else if(root=="http://en.indonesia.tra.co.th"){document.getElementById('panelPollProcess').innerHTML="<p>Sending your vote</p><br/>"}else if(root=="http://indonesia.tra.co.th"){document.getElementById('panelPollProcess').innerHTML="<p>Kirim pilihan And</p><br/>"}else if(root=="http://en.clubnutricia.co.id"){document.getElementById('panelPollProcess').innerHTML="<p>Sending your vote</p><br/>"}else if(root=="http://www.clubnutricia.co.id"){document.getElementById('panelPollProcess').innerHTML="<p>Kirim pilihan And</p><br/>"}xmlhttp.open("GET",url,true);xmlhttp.send(null)}function XMLHttpRequestCompleted(){if(xmlhttp.readyState==4){try{document.getElementById('panelPollProcess').innerHTML="<p>"+xmlhttp.responseText+"</p><br/>";document.getElementById('pollProcess').style.display="none"}catch(e){}}}