	function home_searchBar_display(searchName,searchserv_actionUrl,from_index){
		var fulltext_search_div=document.getElementById("fulltext_search");
		var product_div=document.getElementById("product_Bar");
		
		fulltext_search_div.style.display="none";
		product_div.style.display = "none";
		document.getElementById(searchName).style.display = "block";
		if(from_index!="1"){
			window.location=searchserv_actionUrl;
		}
	}

