function doRemindAction(fname,action) {

    f=document.getElementById('recover_text');

    if( f.value=='') {
        alert('Ошибка! Данные не введены\n');
        f.focus();
        return false;
    } else {
        doAction(fname,action);
        return true;
    }
}
