function getd(This) {
 if (This.country.value == This.country.defaultValue){
        alert('\nВы не ввели страну.')
        This.country.select()
        This.country.focus()
        return false;
    }
 if (This.autor.value == This.autor.defaultValue){
        alert('\nВы не ввели имя.')
        This.autor.select()
        This.autor.focus()
        return false;
    }
 if (This.nametext.value == This.nametext.defaultValue){
        alert('\nВы не ввели название рассказа.')
        This.autor.select()
        This.autor.focus()
        return false;
    }	
 if (This.email.value == This.email.defaultValue){
        alert('\nВведите ваш e-mail.')
        This.email.select()
        This.email.focus()
        return false;
    }
 if (This.email.value.indexOf('@',0)==-1 || This.email.value.indexOf('.',0)==-1){
            alert('\nТакого адреса нет!.')
            This.email.select()
            This.email.focus()
            return false;
        } 
else return true;
} 
function ftd(This) {
 if (This.autor.value == This.autor.defaultValue){
        alert('\nВы не ввели имя.')
        This.autor.select()
        This.autor.focus()
        return false;
    }
 if (This.zagl.value == This.zagl.defaultValue){
        alert('\nВы не ввели заголовок.')
        This.zagl.select()
        This.zagl.focus()
        return false;
    }
else return true;
} 
