function changeSearchType(sType,obj)

	{

		var form = document.formsearch;


		switch(sType)

		{

			case("companies"):{

			 form.country.style.display="";   form.searchBtn.value = "Search Companies";     break; }

			case("buying_leads"):{

				 form.country.style.display="none";   form.searchBtn.value = "Search Buying Leads"; break;}

			case("selling_leads"):{

				form.country.style.display="none";  form.searchBtn.value = "Search Selling Leads";  break;}

			case("products"):{

				  form.country.style.display="none";  form.searchBtn.value = "Search Products";     break;}

		}

	}
