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('
| You cant stand it when a Travel Agent...? |
| doesnt show the final price from the beginning and you feel cheated |
| |
| tells you what you should choose instead of listening to you telling what you want |
| |
| promises more than the package offers. |
| |
| cannot give you all the information you need |
| |
| add a new choice |
| |
| wastes your time because doesnt show all details at once and you have to find out |
| |
| doesnt give opportunities to interact between people |
| |
| doesnt offer packages at a good price |
| |
Click here to vote Online Polls by Tezaa |
');