function GetXmlHttpObject(handler) { var objXMLHttp=null; if (window.XMLHttpRequest) { objXMLHttp=new XMLHttpRequest(); } else if (window.ActiveXObject) { objXMLHttp=new ActiveXObject("Microsoft.XMLHTTP"); } return objXMLHttp; } function submit_vote() { pars="ajax=text"; xmlHttp=GetXmlHttpObject(); if (xmlHttp==null) { alert ("Browser does not support HTTP Request"); return; } var url="/blogpoll.php?"; url=url+"&sid="+Math.random(); alert(url); xmlHttp.onreadystatechange=stateChanged; xmlHttp.open("GET",url,true); xmlHttp.send(null); } function stateChanged() { alert("comes here"); if (xmlHttp.readyState==4 || xmlHttp.readyState=="complete") { alert("comes here"); document.getElementById("txtHint").innerHTML=xmlHttp.responseText; } } document.write('
Whats your experience on Lufthansa flights (Economy Class) to India
Never Travelled. No Opinion
50%
Kind of OK. Will travel again
15%
Good Flights. On Time. But Customer Service sucks
15%
Excellent - Will Recommend to Others
10%
Racist. They treat Indians badly
10%
Bad. Will never travel on Lufthansa
0%
Click here to vote
Online Polls by Tezaa
');