function submitSearchForm(){		 
	var tmp= document.getElementById('searchKeywords').value;
    document.CatalogSearchForm.action = document.CatalogSearchForm.action + '&searchKeywords=' + encodeURIComponent(tmp); 
	document.CatalogSearchForm.submit();
}

function submitSearchForm1(){
 	var tmp= document.getElementById('searchKeywords1').value;
    document.CatalogSearchForm1.action = document.CatalogSearchForm1.action + '&searchKeywords=' + encodeURIComponent(tmp); 			  
	document.CatalogSearchForm1.submit();
}
