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 |
| |
| Kind of OK. Will travel again |
| |
| Good Flights. On Time. But Customer Service sucks |
| |
| Excellent - Will Recommend to Others |
| |
| Racist. They treat Indians badly |
| |
| Bad. Will never travel on Lufthansa |
| |
Click here to vote Online Polls by Tezaa |
');