function CheckCercaBtn () {

	var input_text = document.getElementById('frm_inp').value;


	if (input_text != "") return true;
	else {

		var fornitore = document.getElementById('for_sx');
		var val_fornitore = fornitore.options[fornitore.selectedIndex].value;

		var query_string = "fornitore=" + val_fornitore;


		callA("/prova_js/sel_catalogo_articolo.php",query_string+"&id_nodo=n_art&solo_immagini=1");		
//		window.open("/php/SelCatalogo.php?" + query_string, "_top");

		return false;

	}

}
