function SearchItem()
	{
		var SearchItem = document.all.txt_Search.value;
		if(SearchItem != ""){
			location.href="forms/Search.aspx?search="+SearchItem
		}
		else{
			alert("Please enter the search keyword")
			document.all.txt_Search.focus();
		}
	}
function SearchItem1()
	{
		var SearchItem = document.all.txt_Search.value;
		if(SearchItem != ""){
			location.href="../forms/Search.aspx?search="+SearchItem
		}
		else{
			alert("Please enter the search keyword")
			document.all.txt_Search.focus();
		}
	}
