function showFindType(type,o)
{
	switch(type)
	{
		case "4":
			document.getElementById( "all" ).className = "hand";
			document.getElementById( "co" ).className = "hand";
			document.getElementById( "job" ).className = "hand";
			document.getElementById( "product" ).className = "bgli hand";
			document.getElementById( "keywordtype" ).value = 4;
			if(o!=1)
				document.getElementById("company").action="Search_Result.aspx?keywordtype=4";
			break;
		case "3":
			document.getElementById( "all" ).className = "hand";
			document.getElementById( "co" ).className = "bgli hand";
			document.getElementById( "job" ).className = "hand";
			document.getElementById( "product" ).className = "hand";
			document.getElementById( "keywordtype" ).value = 3;
			if(o!=1)
				document.getElementById("company").action="Search_Result.aspx?keywordtype=3";
				
			break;

		case "2":
			try
			{
			document.getElementById( "all" ).className = "hand";
			}
			catch(o){}
			document.getElementById( "co" ).className = "hand";
			document.getElementById( "product" ).className = "hand";
			document.getElementById( "job" ).className = "bgli hand";
			document.getElementById( "keywordtype" ).value = 2;
			if(o!=1)
				document.getElementById("company").action="Search_Result.aspx?keywordtype=2";
			break;
		case "1":
			document.getElementById( "all" ).className = "bgli hand";
			document.getElementById( "co" ).className = "hand";
			document.getElementById( "product" ).className = "hand";
			document.getElementById( "job" ).className = "hand";
			document.getElementById( "keywordtype" ).value = 1;
			if(o!=1)
				document.getElementById("company").action="Search_Result.aspx?keywordtype=1";
			break;
	}
}