/*
----------------------------------------------------------------------------
CHECK FOR BROWSER TYPE FIRST */

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;
}

var xmlhttp
/* ------------------------------------------------------------------------------
CHECK FOR USERNAME AVAILABILITY  */

function showHHMResults(str)
{
if (str.length==0)
  {
  document.getElementById("flagarea").innerHTML="";
  return;
  }
xmlhttp=GetXmlHttpObject();
if (xmlhttp==null)
  {
  alert ("Your browser does not support XMLHTTP!");
  return;
  }

var url="http://www.carolstravel.com/hotels/include/search_modify_found.asp";
url=url+"?destinationid=" + encodeURI( document.getElementById("destinationid").value ) + 
		"&stateid=" + encodeURI( document.getElementById("stateid").value ) +
		"&cityid=" + encodeURI( document.getElementById("cityid").value );


xmlhttp.onreadystatechange=UserNameChanged;
xmlhttp.open("GET",url,true);
xmlhttp.send(null);
}

function UserNameChanged()
{
if (xmlhttp.readyState==4)
  {
  document.getElementById("flagarea").innerHTML=xmlhttp.responseText;
  }
    else
  { 
		document.getElementById("flagarea").innerHTML = '' + 
		
'<table style="border-collapse:collapse; width: 100%; height: 100%;"><tr><td style="text-align: center; vertical-align: middle;">' +
'<img src="http://www.carolstravel.com/images/global/loading.gif" />' + 
'</td></tr></table>'; 


  }

  
}





