// JavaScript Document

function ChangeDivTab(selectDiv)
{
	$("_lstNews1").style.display = "none";
	$("_lstNews2").style.display = "none";
	$(selectDiv).style.display = "block";
}

function SearchProduct()
{
	var classId = $("lstSearchClassID").options[$("lstSearchClassID").selectedIndex].value;
	
	var key = $("txtSearchKey").value.strip();
	
	location.href = "Product.aspx?ClassID=" + classId + "&key=" + key;
}

function SearchCaseInfor()
{
	var SearchType = $("lstSearchType").options[$("lstSearchType").selectedIndex].value;
	
	var key = $("txtSearchKey").value.strip();
	
	location.href = "Case.aspx?SearchType=" + SearchType + "&key=" + key;
}