// JavaScript Document
var req;
var url="PHP/db_subcategory.php?k=";
function Initialize()
{
	try
	{
		req=new ActiveXObject("Msxml2.XMLHTTP");
	}
	catch(e)
	{
		try
		{
			req=new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch(oc)
		{
			req=null;
		}
	}

	if(!req&&typeof XMLHttpRequest!="undefined")
	{
		req=new XMLHttpRequest();
	}

}

function SendQuery(key)
{
	Initialize();

	if(req!=null)
	{
		req.onreadystatechange = Process;
		req.open("GET", url+key, true);
        req.send(null);

	}

}

function Process()
{
	if (req.readyState == 4)
        {
        // only if "OK"
			if (req.status == 200)
			{
				if(req.responseText=="")
					document.getElementById("Neighbourhood").innerHTML ="<font color='#CCCCCC'>Please select region first</font>";
				else
				{
					ShowDiv("Neighbourhood");
					document.getElementById("Neighbourhood").innerHTML =req.responseText;
					//google_show_ad();
				}
			}
			else
			{
				document.getElementById("Neighbourhood").innerHTML="There was a problem retrieving data:<br>"+req.statusText;
			}
		}
}

function ShowDiv(divid)
{
   if (document.layers) document.layers[divid].visibility="show";
   else document.getElementById(divid).style.visibility="visible";
}

function HideDiv(divid)
{
   if (document.layers) document.layers[divid].visibility="hide";
   else document.getElementById(divid).style.visibility="hidden";
}

function BodyLoad()
{
	document.SearchForm.keyword.focus();

}


