function myfunc(added) {
    if (!added) alert("Проверьте введенные данные");
    else alert("Данные успешно добавлены");
}

function efioFilter(c,cc) {
    return ((c>=1072 && c<=1103) ||  // а..я
    	(c>=1040 && c<=1071) ||  // А..Я
    	(c>=97 && c<=122)    ||  // a..z
    	(c>=65 && c<=90)     ||  // A..Z
    	 c==45 || c == 39    ||  // - '
    	 c==1105 || c==1025  ||  // ё, Ё
    	 cc==9               ||  // tab
    	 cc==0);                  // special symbols
}

function initEfio() {
    fioGroup = new FioGroup;
    fioGroup.setFilter(efioFilter);
    input_0 = document.getElementById("efio_surname");
    input_1 = document.getElementById("efio_name");
    input_2 = document.getElementById("efio_patronym");
    fioGroup.add(new AutoSuggestControl(input_0, new SurnameSuggestions));
    fioGroup.add(new AutoSuggestControl(input_1, new NameSuggestions));
    fioGroup.add(new AutoSuggestControl(input_2, new PatronymSuggestions));
}

