function cascadeCountry(value)
{
	document.getElementById('state').innerHTML = "&nbsp;&nbsp;" + loadingTag;
	script = doc_root + 'ajax/cascade_sign1_exotic.php';
	querystring = 'a=country&v=' + value;
	sendHTTPRequest1(script, querystring, 'get', handleResponse1);
}

function cascadeState(value, v1)
{
	document.getElementById('county').innerHTML = "&nbsp;&nbsp;" + loadingTag;
	script = doc_root + 'ajax/cascade_sign1_exotic.php';
	querystring = 'a=state&v=' + value  + '&v1=' + v1;
	sendHTTPRequest1(script, querystring, 'get', handleResponse1);
}

function cascadeCounty(value, v1, v2)
{
	document.getElementById('city').innerHTML = "&nbsp;&nbsp;" + loadingTag;
	script = doc_root + 'ajax/cascade_sign1_exotic.php';
	querystring = 'a=county&v=' + value + '&v1=' + v1 + '&v2=' + v2;
	sendHTTPRequest1(script, querystring, 'get', handleResponse1);
}

function cascadeCity(value, v1, v2, v3)
{
	document.getElementById('zip').innerHTML = "&nbsp;&nbsp;" + loadingTag;
	script = doc_root + 'ajax/cascade_sign1_exotic.php';
	querystring = 'a=city&v=' + value + '&v1=' + v1 + '&v2=' + v2 + '&v3=' + v3;
	sendHTTPRequest1(script, querystring, 'get', handleResponse1);
}

function cascadeCountryL(value)
{
	document.getElementById('lookstate').innerHTML = "&nbsp;&nbsp;" + loadingTag;
 	script = doc_root + 'ajax/cascade_sign2_exotic.php';
	querystring = 'a=country&v=' + value;
	sendHTTPRequest1(script, querystring, 'get', handleResponse1);
}

function cascadeStateL(value, v1)
{
	document.getElementById('lookcounty').innerHTML = "&nbsp;&nbsp;" + loadingTag;
 	script = doc_root + 'ajax/cascade_sign2_exotic.php';
	querystring = 'a=state&v=' + value  + '&v1=' + v1;
	sendHTTPRequest1(script, querystring, 'get', handleResponse1);
}

function cascadeCountyL(value, v1, v2)
{
	document.getElementById('lookcity').innerHTML = "&nbsp;&nbsp;" + loadingTag;
 	script = doc_root + 'ajax/cascade_sign2_exotic.php';
	querystring = 'a=county&v=' + value + '&v1=' + v1 + '&v2=' + v2;
	sendHTTPRequest1(script, querystring, 'get', handleResponse1);
}

function cascadeCityL(value, v1, v2, v3)
{
	document.getElementById('lookzip').innerHTML = "&nbsp;&nbsp;" + loadingTag;
	script = doc_root + 'ajax/cascade_sign2_exotic.php';
	querystring = 'a=city&v=' + value + '&v1=' + v1 + '&v2=' + v2 + '&v3=' + v3;
	sendHTTPRequest1(script, querystring, 'get', handleResponse1);
}