// JavaScript Document
function show_table(tbl_no)
{
	if(document.getElementById(tbl_no).style.display == "none")
	{
		document.getElementById(tbl_no).style.display = "";
	}
	else
	{
		document.getElementById(tbl_no).style.display = "none";
	}
}

function set_cat(cat_no,subcat_no)
{
	document.getElementById('hdnCategory').value = cat_no;
	document.getElementById('hdnSubcat').value = subcat_no;
	
	var url = "search-results.php?country="+document.getElementById('optCountry').options[document.getElementById('optCountry').selectedIndex].value;
	url = url + "&state="+document.getElementById('state').value;
	url = url + "&city="+document.getElementById('city').value;
				
	url = url + "&category="+document.getElementById('hdnCategory').value;
	url = url + "&subcat="+document.getElementById('hdnSubcat').value;
		
	window.location=url;		
}