
function TestTxtSize(form) {
	txt=form.search.value;
	if(txt.length>2) {
		return(true);
	};
	return(false);
};


