function jsSearchItem()
{
	text = document.getElementById("searchText").value; 
	types = document.getElementById("catType").value;
	
	if (text != "" )
	{	
		window.location.href = "item.php?act=itemsearch&t="+types+"&v="+encodeURI(text);
	}
	else
		alert('Please enter keyword');
}

