<!--
function ajaxFunction()

//  var loc = 'http://www.unitedcountry.com/lakehomeproperty/'


{
// 02/13/2009
var theSite = document.form1.TheFlankName.value
// end 02/13/2009
var theState = document.form1.Where.value
var xmlHttp;
try
  {  
  // Firefox, Opera 8.0+, Safari 
   xmlHttp=new XMLHttpRequest(); 
   }
catch (e)
  { 
   // Internet Explorer 
   try
    {   
     xmlHttp=new ActiveXObject("Msxml2.XMLHTTP"); 
    }
  catch (e)
    {   
     try
      {  
         xmlHttp=new ActiveXObject("Microsoft.XMLHTTP"); 
      }
    catch (e)
      {     
       alert("Your browser does not support AJAX!"); 
       return false; 
       } 
     } 
  }
  xmlHttp.onreadystatechange=function()
    {
    if(xmlHttp.readyState==4)
      {
//      document.form1.count.value=xmlHttp.responseText;
      document.form1.count.value= "Properties found: " + xmlHttp.responseText;

      }
    }
// 02/13/2009 xmlHttp.open("GET","http://www.unitedcountry.com/lakehomeproperty/A_Code/Ajax_OnUpdate.asp?s=" + theState,true);
// 03/16/2009     xmlHttp.open("GET","http://www.unitedcountry.com/" + theSite + "/A_Code/Ajax_OnUpdate.asp?s=" + theState,true);
    xmlHttp.open("GET","http://www.unitedcountry.com/" + theSite + "/A_Code/Ajax_OnUpdate.asp?s=" + theState + "&t=" + theSite,true);
  xmlHttp.send(null);
}
// -->